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

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

Issue 1162663004: Introduce browser-side plumbing for sending the lock icon status to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased onto latest master. Created 5 years, 7 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/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 bacb7cc768fa39d708ffbce45a1ed1edba3eb68e..e6a019d98828e79aab886e8d99556848d3c21277 100644
--- a/content/public/browser/web_contents_observer.h
+++ b/content/public/browser/web_contents_observer.h
@@ -10,6 +10,7 @@
#include "content/common/content_export.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/common/frame_navigate_params.h"
+#include "content/public/common/security_style.h"
#include "ipc/ipc_listener.h"
#include "ipc/ipc_sender.h"
#include "third_party/skia/include/core/SkColor.h"
@@ -156,6 +157,9 @@ class CONTENT_EXPORT WebContentsObserver : public IPC::Listener,
const GURL& url,
ui::PageTransition transition_type) {}
+ // This method is invoked when the security style of the WebContents changes.
+ virtual void SecurityStyleChanged(content::SecurityStyle security_style) {}
+
// This method is invoked when the provisional load failed.
virtual void DidFailProvisionalLoad(
RenderFrameHost* render_frame_host,

Powered by Google App Engine
This is Rietveld 408576698