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

Unified Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 18339006: Rename RenderViewGone IPC/methods to better reflect reality (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Mac compile error. Created 7 years, 5 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/browser/renderer_host/render_view_host_impl.h
diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
index a248da3802fed484b2b2178e9fc59258f55d5133..df4f1c38fa3ef31c13ea3b8d8e93fb9b3b9a672f 100644
--- a/content/browser/renderer_host/render_view_host_impl.h
+++ b/content/browser/renderer_host/render_view_host_impl.h
@@ -491,7 +491,7 @@ class CONTENT_EXPORT RenderViewHostImpl
void OnShowFullscreenWidget(int route_id);
void OnRunModal(int opener_id, IPC::Message* reply_msg);
void OnRenderViewReady();
- void OnRenderViewGone(int status, int error_code);
+ void OnRenderProcessGone(int status, int error_code);
void OnDidStartProvisionalLoadForFrame(int64 frame_id,
int64 parent_frame_id,
bool main_frame,
@@ -649,7 +649,7 @@ class CONTENT_EXPORT RenderViewHostImpl
// The frame id of the main (top level) frame. This value is set on the
// initial navigation of a RenderView and reset when the RenderView is
Charlie Reis 2013/07/09 16:57:37 nit: RenderView's process
nasko 2013/07/09 19:12:48 Done.
- // terminated (in RenderViewGone).
+ // terminated (in RenderProcessGone).
int64 main_frame_id_;
// If we were asked to RunModal, then this will hold the reply_msg that we

Powered by Google App Engine
This is Rietveld 408576698