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

Unified Diff: chrome/common/worker_messages.h

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/common/ipc_message_utils.h ('k') | chrome/common/worker_messages_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/worker_messages.h
===================================================================
--- chrome/common/worker_messages.h (revision 20912)
+++ chrome/common/worker_messages.h (working copy)
@@ -13,7 +13,67 @@
#include "base/basictypes.h"
#include "chrome/common/ipc_message_utils.h"
+// Parameters structure for WorkerHostMsg_PostConsoleMessageToWorkerObject,
+// which has too many data parameters to be reasonably put in a predefined
+// IPC message. The data members directly correspond to parameters of
+// WebWorkerClient::postConsoleMessageToWorkerObject()
+struct WorkerHostMsg_PostConsoleMessageToWorkerObject_Params {
+ int destination_identifier;
+ int source_identifier;
+ int message_type;
+ int message_level;
+ string16 message;
+ int line_number;
+ string16 source_url;
+};
+namespace IPC {
+
+// Traits for WorkerHostMsg_PostConsoleMessageToWorkerObject_Params structure
+// to pack/unpack.
+template <>
+struct ParamTraits<WorkerHostMsg_PostConsoleMessageToWorkerObject_Params> {
+ typedef WorkerHostMsg_PostConsoleMessageToWorkerObject_Params param_type;
+ static void Write(Message* m, const param_type& p) {
+ WriteParam(m, p.destination_identifier);
+ WriteParam(m, p.source_identifier);
+ WriteParam(m, p.message_type);
+ WriteParam(m, p.message_level);
+ WriteParam(m, p.message);
+ WriteParam(m, p.line_number);
+ WriteParam(m, p.source_url);
+ }
+ static bool Read(const Message* m, void** iter, param_type* p) {
+ return
+ ReadParam(m, iter, &p->destination_identifier) &&
+ ReadParam(m, iter, &p->source_identifier) &&
+ ReadParam(m, iter, &p->message_type) &&
+ ReadParam(m, iter, &p->message_level) &&
+ ReadParam(m, iter, &p->message) &&
+ ReadParam(m, iter, &p->line_number) &&
+ ReadParam(m, iter, &p->source_url);
+ }
+ static void Log(const param_type& p, std::wstring* l) {
+ l->append(L"(");
+ LogParam(p.destination_identifier, l);
+ l->append(L", ");
+ LogParam(p.source_identifier, l);
+ l->append(L", ");
+ LogParam(p.message_type, l);
+ l->append(L", ");
+ LogParam(p.message_level, l);
+ l->append(L", ");
+ LogParam(p.message, l);
+ l->append(L", ");
+ LogParam(p.line_number, l);
+ l->append(L", ");
+ LogParam(p.source_url, l);
+ l->append(L")");
+ }
+};
+
+} // namespace IPC
+
#define MESSAGES_INTERNAL_FILE "chrome/common/worker_messages_internal.h"
#include "chrome/common/ipc_message_macros.h"
« no previous file with comments | « chrome/common/ipc_message_utils.h ('k') | chrome/common/worker_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698