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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 DevToolsMsgStart, | 54 DevToolsMsgStart, |
55 WorkerMsgStart, | 55 WorkerMsgStart, |
56 NaClMsgStart, | 56 NaClMsgStart, |
57 UtilityMsgStart, | 57 UtilityMsgStart, |
58 GpuMsgStart, | 58 GpuMsgStart, |
59 ServiceMsgStart, | 59 ServiceMsgStart, |
60 PpapiMsgStart, | 60 PpapiMsgStart, |
61 FirefoxImporterUnittestMsgStart, | 61 FirefoxImporterUnittestMsgStart, |
62 FileUtilitiesMsgStart, | 62 FileUtilitiesMsgStart, |
63 MimeRegistryMsgStart, | 63 MimeRegistryMsgStart, |
| 64 DOMStorageMsgStart, |
64 }; | 65 }; |
65 | 66 |
66 class DictionaryValue; | 67 class DictionaryValue; |
67 class FilePath; | 68 class FilePath; |
68 class ListValue; | 69 class ListValue; |
69 class NullableString16; | 70 class NullableString16; |
70 | 71 |
71 namespace base { | 72 namespace base { |
72 class Time; | 73 class Time; |
73 class TimeDelta; | 74 class TimeDelta; |
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1179 ReplyParam p(a, b, c, d, e); | 1180 ReplyParam p(a, b, c, d, e); |
1180 WriteParam(reply, p); | 1181 WriteParam(reply, p); |
1181 } | 1182 } |
1182 }; | 1183 }; |
1183 | 1184 |
1184 //----------------------------------------------------------------------------- | 1185 //----------------------------------------------------------------------------- |
1185 | 1186 |
1186 } // namespace IPC | 1187 } // namespace IPC |
1187 | 1188 |
1188 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1189 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
OLD | NEW |