summaryrefslogtreecommitdiffstats
path: root/chrome/common/render_messages_internal.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-24 02:01:11 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-24 02:01:11 +0000
commitfd09950346afe96c4d86d37d98fd45003872ab3f (patch)
tree115466bfb6c258ef2b190bbea6c02f0e53b17582 /chrome/common/render_messages_internal.h
parent06fc8e6e54172eecff83e72fa36d038f26403328 (diff)
downloadchromium_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/common/render_messages_internal.h')
-rw-r--r--chrome/common/render_messages_internal.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index d9206d1..577bde2 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -543,16 +543,6 @@ IPC_BEGIN_MESSAGES(ViewHost)
bool /* focus on show */,
int /* route_id */)
- // These two messages are sent as a result of the above two, in the browser
- // process, from RenderWidgetHelper to RenderViewHost.
- IPC_MESSAGE_ROUTED2(ViewHostMsg_CreateWindowWithRoute,
- int /* route_id */,
- ModalDialogEvent /* modal_dialog_event */)
-
- IPC_MESSAGE_ROUTED2(ViewHostMsg_CreateWidgetWithRoute,
- int /* route_id */,
- bool /* activatable */)
-
// These two messages are sent to the parent RenderViewHost to display the
// page/widget that was created by CreateView/CreateWidget. routing_id
// refers to the id that was returned from the Create message above.
@@ -1225,8 +1215,9 @@ IPC_BEGIN_MESSAGES(ViewHost)
// A renderer sends this to the browser process when it wants to create a
// worker. The browser will create the worker process if necessary, and
// will return the route id on success. On error returns MSG_ROUTING_NONE.
- IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateDedicatedWorker,
+ IPC_SYNC_MESSAGE_CONTROL2_1(ViewHostMsg_CreateDedicatedWorker,
GURL /* url */,
+ int /* render_view_route_id */,
int /* route_id */)
// Wraps an IPC message that's destined to the worker on the renderer->browser