Index: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
index 593168c264e289eb4cc6647a75d9d04d986f79b9..df5a48242381ec63012cd1646f3f187993f6b66c 100644 |
--- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
+++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h |
@@ -31,6 +31,7 @@ |
#ifndef WebDevToolsAgentImpl_h |
#define WebDevToolsAgentImpl_h |
+#include "core/inspector/InspectorNetworkAgent.h" |
#include "core/inspector/InspectorPageAgent.h" |
#include "core/inspector/InspectorSession.h" |
#include "core/inspector/InspectorTracingAgent.h" |
@@ -67,6 +68,7 @@ class WebDevToolsAgentImpl final |
: public GarbageCollectedFinalized<WebDevToolsAgentImpl> |
, public WebDevToolsAgent |
, public InspectorEmulationAgent::Client |
+ , public InspectorNetworkAgent::Client |
, public InspectorTracingAgent::Client |
, public InspectorPageAgent::Client |
, public InspectorSession::Client |
@@ -114,6 +116,9 @@ private: |
// InspectorEmulationAgent::Client implementation. |
void setCPUThrottlingRate(double) override; |
+ // InspectorNetworkAgent::Client implementation. |
+ void showCertificateViewer(const AtomicString&) override; |
+ |
// InspectorPageAgent::Client implementation. |
void pageLayoutInvalidated(bool resized) override; |
void configureOverlay(bool suspended, const String& message) override; |