Chromium Code Reviews| 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() {} |