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

Unified Diff: content/public/browser/web_contents_observer.h

Issue 1181293003: Expand SecurityStyleChanged interfaces to include explanations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add CONTENT_EXPORT 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
« no previous file with comments | « content/public/browser/web_contents_delegate.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents_observer.h
diff --git a/content/public/browser/web_contents_observer.h b/content/public/browser/web_contents_observer.h
index fe2dc9d1fc8dcc6e355999b6ff47937def0636fd..d8797764bb2e380fbbc97496eb915a635970b488 100644
--- a/content/public/browser/web_contents_observer.h
+++ b/content/public/browser/web_contents_observer.h
@@ -32,6 +32,7 @@ struct LoadFromMemoryCacheDetails;
struct Referrer;
struct ResourceRedirectDetails;
struct ResourceRequestDetails;
+struct SecurityStyleExplanations;
// An observer API implemented by classes which are interested in various page
// load events from WebContents. They also get a chance to filter IPC messages.
@@ -178,7 +179,12 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener,
const FrameNavigateParams& params) {}
// This method is invoked when the SecurityStyle of the WebContents changes.
- virtual void SecurityStyleChanged(content::SecurityStyle security_style) {}
+ // |security_style| is the new SecurityStyle. |security_style_explanations|
+ // contains human-readable strings explaining why the SecurityStyle of the
+ // page has been downgraded.
+ virtual void SecurityStyleChanged(
+ SecurityStyle security_style,
+ const SecurityStyleExplanations& security_style_explanations) {}
// This method is invoked once the window.document object of the main frame
// was created.
« no previous file with comments | « content/public/browser/web_contents_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698