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