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

Unified Diff: content/browser/devtools/protocol/security_handler.h

Issue 1181293003: Expand SecurityStyleChanged interfaces to include explanations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments, style tweaks Created 5 years, 6 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: content/browser/devtools/protocol/security_handler.h
diff --git a/content/browser/devtools/protocol/security_handler.h b/content/browser/devtools/protocol/security_handler.h
index c9c90842efbc475cea2ff52d157179d9bc421d71..42c98cca9c39da213d6d7714fba5eb3e0acc730b 100644
--- a/content/browser/devtools/protocol/security_handler.h
+++ b/content/browser/devtools/protocol/security_handler.h
@@ -5,6 +5,9 @@
#ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_
#define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_
+#include <string>
+#include <vector>
Peter Kasting 2015/06/16 06:29:11 These #includes aren't necessary
estark 2015/06/16 15:32:35 Done.
+
#include "content/browser/devtools/devtools_protocol_handler.h"
#include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h"
#include "content/public/browser/web_contents_observer.h"
@@ -30,7 +33,9 @@ class SecurityHandler : public WebContentsObserver {
private:
// WebContentsObserver overrides
- void SecurityStyleChanged(SecurityStyle security_style) override;
+ void SecurityStyleChanged(
+ SecurityStyle security_style,
+ const SecurityStyleExplanation& security_style_explanation) override;
scoped_ptr<Client> client_;
bool enabled_;

Powered by Google App Engine
This is Rietveld 408576698