summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/inspector/inspector_page_agent.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/inspector/inspector_page_agent.h')
-rw-r--r--chromium/third_party/blink/renderer/core/inspector/inspector_page_agent.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/inspector/inspector_page_agent.h b/chromium/third_party/blink/renderer/core/inspector/inspector_page_agent.h
index 271ac0804c3..db5592537ac 100644
--- a/chromium/third_party/blink/renderer/core/inspector/inspector_page_agent.h
+++ b/chromium/third_party/blink/renderer/core/inspector/inspector_page_agent.h
@@ -31,7 +31,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INSPECTOR_PAGE_AGENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INSPECTOR_PAGE_AGENT_H_
-#include "base/macros.h"
#include "third_party/blink/public/mojom/v8_cache_options.mojom-blink.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/inspector/inspector_base_agent.h"
@@ -105,6 +104,8 @@ class CORE_EXPORT InspectorPageAgent final
Client*,
InspectorResourceContentLoader*,
v8_inspector::V8InspectorSession*);
+ InspectorPageAgent(const InspectorPageAgent&) = delete;
+ InspectorPageAgent& operator=(const InspectorPageAgent&) = delete;
// Page API for frontend
protocol::Response enable() override;
@@ -147,6 +148,9 @@ class CORE_EXPORT InspectorPageAgent final
std::unique_ptr<
protocol::Array<protocol::Page::PermissionsPolicyFeatureState>>*)
override;
+ protocol::Response getOriginTrials(
+ const String& frame_id,
+ std::unique_ptr<protocol::Array<protocol::Page::OriginTrial>>*) override;
protocol::Response startScreencast(Maybe<String> format,
Maybe<int> quality,
@@ -294,7 +298,6 @@ class CORE_EXPORT InspectorPageAgent final
InspectorAgentState::Integer standard_font_size_;
InspectorAgentState::Integer fixed_font_size_;
InspectorAgentState::Boolean produce_compilation_cache_;
- DISALLOW_COPY_AND_ASSIGN(InspectorPageAgent);
};
} // namespace blink