OLD | NEW |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ChildProcessMsgStart, |
77 ClipboardMsgStart, | 77 ClipboardMsgStart, |
| 78 BlobMsgStart, |
78 }; | 79 }; |
79 | 80 |
80 class DictionaryValue; | 81 class DictionaryValue; |
81 class FilePath; | 82 class FilePath; |
82 class ListValue; | 83 class ListValue; |
83 class NullableString16; | 84 class NullableString16; |
84 | 85 |
85 namespace base { | 86 namespace base { |
86 class Time; | 87 class Time; |
87 class TimeDelta; | 88 class TimeDelta; |
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1201 ReplyParam p(a, b, c, d, e); | 1202 ReplyParam p(a, b, c, d, e); |
1202 WriteParam(reply, p); | 1203 WriteParam(reply, p); |
1203 } | 1204 } |
1204 }; | 1205 }; |
1205 | 1206 |
1206 //----------------------------------------------------------------------------- | 1207 //----------------------------------------------------------------------------- |
1207 | 1208 |
1208 } // namespace IPC | 1209 } // namespace IPC |
1209 | 1210 |
1210 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1211 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
OLD | NEW |