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

Unified Diff: content/public/renderer/render_frame.h

Issue 137463002: RenderFrame: flesh out Observer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Bridge OnStop Created 6 years, 11 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/renderer/render_frame.h
diff --git a/content/public/renderer/render_frame.h b/content/public/renderer/render_frame.h
index 9831e1a5359c4bbb0e9730a0cd7913df45b97bc1..418d49ad53513e45c25a72b72c13b030c70afe5f 100644
--- a/content/public/renderer/render_frame.h
+++ b/content/public/renderer/render_frame.h
@@ -77,6 +77,9 @@ class CONTENT_EXPORT RenderFrame : public IPC::Listener,
const blink::WebURLRequest& request,
blink::WebNavigationPolicy policy) = 0;
+ // OnStop notification from RenderView.
+ virtual void OnStop() = 0;
nasko 2014/01/28 20:41:39 This doesn't need to be public, it is just an IPC
Elly Fong-Jones 2014/01/28 21:34:20 Yes it does - it is not a "real" IPC endpoint but
+
protected:
virtual ~RenderFrame() {}

Powered by Google App Engine
This is Rietveld 408576698