diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-24 02:01:11 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-24 02:01:11 +0000 |
commit | fd09950346afe96c4d86d37d98fd45003872ab3f (patch) | |
tree | 115466bfb6c258ef2b190bbea6c02f0e53b17582 /chrome/browser/renderer_host/render_widget_helper.h | |
parent | 06fc8e6e54172eecff83e72fa36d038f26403328 (diff) | |
download | chromium_src-fd09950346afe96c4d86d37d98fd45003872ab3f.zip chromium_src-fd09950346afe96c4d86d37d98fd45003872ab3f.tar.gz chromium_src-fd09950346afe96c4d86d37d98fd45003872ab3f.tar.bz2 |
Finish hooking up the worker process UI: use the domains of the workers as the title in the task manager, and show an infobar when a page's workers die.
I also cleaned up the code in RenderView which creates a window and widget, since when I originally wrote it I wasn't aware of RenderViewHost::FromID.
Review URL: http://codereview.chromium.org/45025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12335 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host/render_widget_helper.h')
-rw-r--r-- | chrome/browser/renderer_host/render_widget_helper.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/renderer_host/render_widget_helper.h b/chrome/browser/renderer_host/render_widget_helper.h index 193a09c..e1b306e 100644 --- a/chrome/browser/renderer_host/render_widget_helper.h +++ b/chrome/browser/renderer_host/render_widget_helper.h @@ -155,13 +155,15 @@ class RenderWidgetHelper : void OnDispatchPaintMsg(PaintMsgProxy* proxy); // Called on the UI thread to finish creating a window. - void OnCreateWindowOnUI(const IPC::Message& message, int route_id); + void OnCreateWindowOnUI(int opener_id, + int route_id, + ModalDialogEvent modal_dialog_event); // Called on the IO thread after a window was created on the UI thread. void OnCreateWindowOnIO(int route_id); // Called on the UI thread to finish creating a widget. - void OnCreateWidgetOnUI(const IPC::Message& message); + void OnCreateWidgetOnUI(int opener_id, int route_id, bool activatable); // Called on the IO thread to cancel resource requests for the render widget. void OnCancelResourceRequests(int render_widget_id); |