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

Unified Diff: content/browser/frame_host/render_frame_host_manager.cc

Issue 255293002: Rename UpdateRendererStateForNavigate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/frame_host/render_frame_host_manager.cc
diff --git a/content/browser/frame_host/render_frame_host_manager.cc b/content/browser/frame_host/render_frame_host_manager.cc
index 2dfc2218b3e1e47ee2cfc82be509192a4b15e1b9..97bd7e04f3661afcbc08ee8e40af401872fcbb4f 100644
--- a/content/browser/frame_host/render_frame_host_manager.cc
+++ b/content/browser/frame_host/render_frame_host_manager.cc
@@ -165,7 +165,7 @@ RenderFrameHostImpl* RenderFrameHostManager::Navigate(
TRACE_EVENT0("browser", "RenderFrameHostManager:Navigate");
// Create a pending RenderFrameHost to use for the navigation.
RenderFrameHostImpl* dest_render_frame_host =
- UpdateRendererStateForNavigate(entry);
+ UpdateStateForNavigate(entry);
Charlie Reis 2014/04/29 21:32:09 This can fit on the previous line now, right?
nasko 2014/04/29 21:34:17 Done.
if (!dest_render_frame_host)
return NULL; // We weren't able to create a pending render frame host.
@@ -1168,7 +1168,7 @@ void RenderFrameHostManager::ShutdownRenderFrameHostsInSiteInstance(
}
}
-RenderFrameHostImpl* RenderFrameHostManager::UpdateRendererStateForNavigate(
+RenderFrameHostImpl* RenderFrameHostManager::UpdateStateForNavigate(
const NavigationEntryImpl& entry) {
// If we are currently navigating cross-process, we want to get back to normal
// and then navigate as usual.

Powered by Google App Engine
This is Rietveld 408576698