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

Unified Diff: chrome/renderer/webworker_proxy.cc

Issue 149775: Remove 6- and 7-parameter IPC message macros. Replace with a struct that pack... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/renderer/webworker_proxy.h ('k') | chrome/worker/webworkerclient_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/webworker_proxy.cc
===================================================================
--- chrome/renderer/webworker_proxy.cc (revision 20912)
+++ chrome/renderer/webworker_proxy.cc (working copy)
@@ -113,9 +113,8 @@
IPC_MESSAGE_FORWARD(WorkerHostMsg_PostExceptionToWorkerObject,
client_,
WebWorkerClient::postExceptionToWorkerObject)
- IPC_MESSAGE_FORWARD(WorkerHostMsg_PostConsoleMessageToWorkerObject,
- client_,
- WebWorkerClient::postConsoleMessageToWorkerObject)
+ IPC_MESSAGE_HANDLER(WorkerHostMsg_PostConsoleMessageToWorkerObject,
+ OnPostConsoleMessageToWorkerObject)
IPC_MESSAGE_FORWARD(WorkerHostMsg_ConfirmMessageFromWorkerObject,
client_,
WebWorkerClient::confirmMessageFromWorkerObject)
@@ -137,3 +136,11 @@
Send(queued_messages[i]);
}
}
+
+void WebWorkerProxy::OnPostConsoleMessageToWorkerObject(
+ const WorkerHostMsg_PostConsoleMessageToWorkerObject_Params& params) {
+ client_->postConsoleMessageToWorkerObject(params.destination_identifier,
+ params.source_identifier, params.message_type, params.message_level,
+ params.message, params.line_number, params.source_url);
+}
+
« no previous file with comments | « chrome/renderer/webworker_proxy.h ('k') | chrome/worker/webworkerclient_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698