Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1068)

Unified Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h

Issue 2296953004: Send certificates to devtools when it's open instead of using certId (Closed)
Patch Set: clear certificates on didstartprovisionalload Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..dcfa0f159896fab7a09dd92901114ec7ce1c32d1 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 Vector<AtomicString>&) override;
+
// InspectorPageAgent::Client implementation.
void pageLayoutInvalidated(bool resized) override;
void configureOverlay(bool suspended, const String& message) override;

Powered by Google App Engine
This is Rietveld 408576698