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

Unified Diff: chrome/worker/webworkerclient_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.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/worker/webworkerclient_proxy.cc
===================================================================
--- chrome/worker/webworkerclient_proxy.cc (revision 20912)
+++ chrome/worker/webworkerclient_proxy.cc (working copy)
@@ -98,9 +98,15 @@
const WebString& message,
int line_number,
const WebString& source_url) {
- Send(new WorkerHostMsg_PostConsoleMessageToWorkerObject(
- route_id_, destination, source, type, level,
- message, line_number, source_url));
+ WorkerHostMsg_PostConsoleMessageToWorkerObject_Params params;
+ params.destination_identifier = destination;
+ params.source_identifier = source;
+ params.message_type = type;
+ params.message_level = level;
+ params.message = message;
+ params.line_number = line_number;
+ params.source_url = source_url;
+ Send(new WorkerHostMsg_PostConsoleMessageToWorkerObject(route_id_, params));
}
void WebWorkerClientProxy::confirmMessageFromWorkerObject(
« no previous file with comments | « chrome/renderer/webworker_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698