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

Side by Side Diff: ipc/ipc_message_utils.h

Issue 6625064: Move the common child process messages into their own file. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 | « content/content_common.gypi ('k') | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef IPC_IPC_MESSAGE_UTILS_H_ 5 #ifndef IPC_IPC_MESSAGE_UTILS_H_
6 #define IPC_IPC_MESSAGE_UTILS_H_ 6 #define IPC_IPC_MESSAGE_UTILS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <string> 10 #include <string>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 IndexedDBMsgStart, 66 IndexedDBMsgStart,
67 PepperFileMsgStart, 67 PepperFileMsgStart,
68 SpeechInputMsgStart, 68 SpeechInputMsgStart,
69 PepperMsgStart, 69 PepperMsgStart,
70 AutoFillMsgStart, 70 AutoFillMsgStart,
71 SafeBrowsingMsgStart, 71 SafeBrowsingMsgStart,
72 P2PMsgStart, 72 P2PMsgStart,
73 SocketStreamMsgStart, 73 SocketStreamMsgStart,
74 ResourceMsgStart, 74 ResourceMsgStart,
75 FileSystemMsgStart, 75 FileSystemMsgStart,
76 ChildProcessMsgStart,
76 }; 77 };
77 78
78 class DictionaryValue; 79 class DictionaryValue;
79 class FilePath; 80 class FilePath;
80 class ListValue; 81 class ListValue;
81 class NullableString16; 82 class NullableString16;
82 83
83 namespace base { 84 namespace base {
84 class Time; 85 class Time;
85 class TimeDelta; 86 class TimeDelta;
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 ReplyParam p(a, b, c, d, e); 1200 ReplyParam p(a, b, c, d, e);
1200 WriteParam(reply, p); 1201 WriteParam(reply, p);
1201 } 1202 }
1202 }; 1203 };
1203 1204
1204 //----------------------------------------------------------------------------- 1205 //-----------------------------------------------------------------------------
1205 1206
1206 } // namespace IPC 1207 } // namespace IPC
1207 1208
1208 #endif // IPC_IPC_MESSAGE_UTILS_H_ 1209 #endif // IPC_IPC_MESSAGE_UTILS_H_
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698