diff options
author | dimich@google.com <dimich@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-17 18:35:16 +0000 |
---|---|---|
committer | dimich@google.com <dimich@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-17 18:35:16 +0000 |
commit | a021b2e246b164ef6a4911d79d38df0fd14fd38b (patch) | |
tree | f4fd62c0b53caa886de5d2c94c75b7a5abd55e44 /chrome/common/worker_messages_internal.h | |
parent | ff9b3fd329d6660386ea34be83441e477e682ca9 (diff) | |
download | chromium_src-a021b2e246b164ef6a4911d79d38df0fd14fd38b.zip chromium_src-a021b2e246b164ef6a4911d79d38df0fd14fd38b.tar.gz chromium_src-a021b2e246b164ef6a4911d79d38df0fd14fd38b.tar.bz2 |
Remove 6- and 7-parameter IPC message macros. Replace with a struct that packs parameters.
BUG=16685
TEST=none
Review URL: http://codereview.chromium.org/149775
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20980 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/worker_messages_internal.h')
-rw-r--r-- | chrome/common/worker_messages_internal.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/chrome/common/worker_messages_internal.h b/chrome/common/worker_messages_internal.h index 41707fd..74063c1 100644 --- a/chrome/common/worker_messages_internal.h +++ b/chrome/common/worker_messages_internal.h @@ -55,14 +55,8 @@ IPC_BEGIN_MESSAGES(WorkerHost) int /* line_number */, string16 /* source_url*/) - IPC_MESSAGE_ROUTED7(WorkerHostMsg_PostConsoleMessageToWorkerObject, - int /* destination */, - int /* source */, - int /* type */, - int /* level */, - string16 /* message */, - int /* line_number */, - string16 /* source_url */) + IPC_MESSAGE_ROUTED1(WorkerHostMsg_PostConsoleMessageToWorkerObject, + WorkerHostMsg_PostConsoleMessageToWorkerObject_Params) IPC_MESSAGE_ROUTED1(WorkerHostMsg_ConfirmMessageFromWorkerObject, bool /* bool has_pending_activity */) |