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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 15682009: Eliminate SwapOut message parameters, keeping state in RVHM instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move pending_nav_params_ to RVHM Created 7 years, 6 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_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 21c20c9fa3cb30f9d94e39ee60cda8f577ca6f4b..3309ce8f92d4c85e48a14c329371172d414ba3a2 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -713,9 +713,9 @@ int RenderProcessHostImpl::GetNextRoutingID() {
return widget_helper_->GetNextRoutingID();
}
-void RenderProcessHostImpl::SimulateSwapOutACK(
- const ViewMsg_SwapOut_Params& params) {
- widget_helper_->SimulateSwapOutACK(params);
+void RenderProcessHostImpl::ResumeDeferredNavigation(
+ const GlobalRequestID& request_id) {
+ widget_helper_->ResumeDeferredNavigation(request_id);
}
bool RenderProcessHostImpl::WaitForBackingStoreMsg(

Powered by Google App Engine
This is Rietveld 408576698