Chromium Code Reviews| 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..5d3052fa9047ab3252e81eb6c77a2ba6dad46c66 100644 |
| --- a/content/public/browser/web_contents_observer.h |
| +++ b/content/public/browser/web_contents_observer.h |
| @@ -177,8 +177,14 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener, |
| const LoadCommittedDetails& details, |
| const FrameNavigateParams& params) {} |
| - // This method is invoked when the SecurityStyle of the WebContents changes. |
| - virtual void SecurityStyleChanged(content::SecurityStyle security_style) {} |
| + // This method is invoked when the SecurityStyle of the WebContents |
| + // changes. |security_style| is the new |
|
Charlie Reis
2015/06/17 18:37:40
nit: Looks like "changes" fits on the previous lin
estark
2015/06/17 20:35:57
Done.
|
| + // 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. |