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

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

Issue 10809051: Fix regression of bug 205 where a plugin in a window shown with window.open may not have the correc… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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_widget_helper.h
===================================================================
--- content/browser/renderer_host/render_widget_helper.h (revision 147827)
+++ content/browser/renderer_host/render_widget_helper.h (working copy)
@@ -130,6 +130,9 @@
bool WaitForBackingStoreMsg(int render_widget_id,
const base::TimeDelta& max_delay,
IPC::Message* msg);
+ // Called to resume the requests for a view after it's ready. The view was
+ // created by CreateNewWindow which initially blocked the requests.
+ void ResumeRequestsForView(int route_id);
#if defined(OS_MACOSX)
// Given the id of a transport DIB, return a mapping to it or NULL on error.
@@ -197,7 +200,7 @@
SessionStorageNamespace* session_storage_namespace);
// Called on the IO thread after a window was created on the UI thread.
- void OnCreateWindowOnIO(int route_id);
+ void OnResumeRequestsForView(int route_id);
// Called on the UI thread to finish creating a widget.
void OnCreateWidgetOnUI(int opener_id,

Powered by Google App Engine
This is Rietveld 408576698