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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/ipc_message_utils.h ('k') | chrome/common/worker_messages_internal.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Defines messages between the browser and worker process, as well as between 5 // Defines messages between the browser and worker process, as well as between
6 // the renderer and worker process. 6 // the renderer and worker process.
7 7
8 #ifndef CHROME_COMMON_WORKER_MESSAGES_H_ 8 #ifndef CHROME_COMMON_WORKER_MESSAGES_H_
9 #define CHROME_COMMON_WORKER_MESSAGES_H_ 9 #define CHROME_COMMON_WORKER_MESSAGES_H_
10 10
11 #include <string> 11 #include <string>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "chrome/common/ipc_message_utils.h" 14 #include "chrome/common/ipc_message_utils.h"
15 15
16 // Parameters structure for WorkerHostMsg_PostConsoleMessageToWorkerObject,
17 // which has too many data parameters to be reasonably put in a predefined
18 // IPC message. The data members directly correspond to parameters of
19 // WebWorkerClient::postConsoleMessageToWorkerObject()
20 struct WorkerHostMsg_PostConsoleMessageToWorkerObject_Params {
21 int destination_identifier;
22 int source_identifier;
23 int message_type;
24 int message_level;
25 string16 message;
26 int line_number;
27 string16 source_url;
28 };
29
30 namespace IPC {
31
32 // Traits for WorkerHostMsg_PostConsoleMessageToWorkerObject_Params structure
33 // to pack/unpack.
34 template <>
35 struct ParamTraits<WorkerHostMsg_PostConsoleMessageToWorkerObject_Params> {
36 typedef WorkerHostMsg_PostConsoleMessageToWorkerObject_Params param_type;
37 static void Write(Message* m, const param_type& p) {
38 WriteParam(m, p.destination_identifier);
39 WriteParam(m, p.source_identifier);
40 WriteParam(m, p.message_type);
41 WriteParam(m, p.message_level);
42 WriteParam(m, p.message);
43 WriteParam(m, p.line_number);
44 WriteParam(m, p.source_url);
45 }
46 static bool Read(const Message* m, void** iter, param_type* p) {
47 return
48 ReadParam(m, iter, &p->destination_identifier) &&
49 ReadParam(m, iter, &p->source_identifier) &&
50 ReadParam(m, iter, &p->message_type) &&
51 ReadParam(m, iter, &p->message_level) &&
52 ReadParam(m, iter, &p->message) &&
53 ReadParam(m, iter, &p->line_number) &&
54 ReadParam(m, iter, &p->source_url);
55 }
56 static void Log(const param_type& p, std::wstring* l) {
57 l->append(L"(");
58 LogParam(p.destination_identifier, l);
59 l->append(L", ");
60 LogParam(p.source_identifier, l);
61 l->append(L", ");
62 LogParam(p.message_type, l);
63 l->append(L", ");
64 LogParam(p.message_level, l);
65 l->append(L", ");
66 LogParam(p.message, l);
67 l->append(L", ");
68 LogParam(p.line_number, l);
69 l->append(L", ");
70 LogParam(p.source_url, l);
71 l->append(L")");
72 }
73 };
74
75 } // namespace IPC
16 76
17 #define MESSAGES_INTERNAL_FILE "chrome/common/worker_messages_internal.h" 77 #define MESSAGES_INTERNAL_FILE "chrome/common/worker_messages_internal.h"
18 #include "chrome/common/ipc_message_macros.h" 78 #include "chrome/common/ipc_message_macros.h"
19 79
20 #endif // CHROME_COMMON_WORKER_MESSAGES_H_ 80 #endif // CHROME_COMMON_WORKER_MESSAGES_H_
OLDNEW
« 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