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

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

Issue 1542743002: [RDHI] Refactored blocked_loaders_map_ to key by render frame route id (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: just comments / minor restructuring (trybots previous) Created 5 years 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_widget_helper.h
diff --git a/content/browser/renderer_host/render_widget_helper.h b/content/browser/renderer_host/render_widget_helper.h
index 881dd506357d430a4a24072cb8fc875f5fd1a4b8..b3ac44de23cc3f1468e64c9b286cbe800d8d53bb 100644
--- a/content/browser/renderer_host/render_widget_helper.h
+++ b/content/browser/renderer_host/render_widget_helper.h
@@ -93,9 +93,9 @@ class RenderWidgetHelper
// for documentation.
void ResumeDeferredNavigation(const GlobalRequestID& request_id);
- // Called to resume the requests for a view after it's ready. The view was
+ // Called to resume the requests for a frame after it's ready. The frame was
// created by CreateNewWindow which initially blocked the requests.
- void ResumeRequestsForView(int route_id);
+ void ResumeRequestsForFrame(int route_id);
// IO THREAD ONLY -----------------------------------------------------------
@@ -126,7 +126,7 @@ class RenderWidgetHelper
SessionStorageNamespace* session_storage_namespace);
// Called on the IO thread after a window was created on the UI thread.
- void OnResumeRequestsForView(int route_id);
+ void OnResumeRequestsForFrame(int route_id);
// Called on the UI thread to finish creating a widget.
void OnCreateWidgetOnUI(int32 opener_id,

Powered by Google App Engine
This is Rietveld 408576698