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

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

Issue 172063002: Unify frame IDs with RenderFrameHost routing IDs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix type Created 6 years, 10 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 a3f40093763b54e750ea4dc78c3f1ff4aac86fcf..cce8436d51fd318784eb9e59e6f75aadb33a451a 100644
--- a/content/browser/renderer_host/render_view_host_impl.h
+++ b/content/browser/renderer_host/render_view_host_impl.h
@@ -460,11 +460,6 @@ class CONTENT_EXPORT RenderViewHostImpl
// User rotated the screen. Calls the "onorientationchange" Javascript hook.
void SendOrientationChangeEvent(int orientation);
- // TODO(creis): Remove this when we replace frame IDs with RenderFrameHost
- // routing IDs.
- int64 main_frame_id() const {
- return main_frame_id_;
- }
int main_frame_routing_id() const {
return main_frame_routing_id_;
}
@@ -698,12 +693,6 @@ class CONTENT_EXPORT RenderViewHostImpl
// TODO(nasko): Move to RenderFrameHost, as this is per-frame state.
RenderViewHostImplState rvh_state_;
- // 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's
- // process is terminated (in RenderProcessGone).
- // TODO(creis): Remove this when we switch to routing IDs for frames.
- int64 main_frame_id_;
-
// Routing ID for the main frame's RenderFrameHost.
int main_frame_routing_id_;
« no previous file with comments | « content/browser/frame_host/render_frame_message_filter.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698