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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 ProfileImportMsgStart, | 52 ProfileImportMsgStart, |
53 TestMsgStart, | 53 TestMsgStart, |
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, |
| 63 MimeRegistryMsgStart, |
62 }; | 64 }; |
63 | 65 |
64 class DictionaryValue; | 66 class DictionaryValue; |
65 class FilePath; | 67 class FilePath; |
66 class ListValue; | 68 class ListValue; |
67 class NullableString16; | 69 class NullableString16; |
68 | 70 |
69 namespace base { | 71 namespace base { |
70 class Time; | 72 class Time; |
71 class TimeDelta; | 73 class TimeDelta; |
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1177 ReplyParam p(a, b, c, d, e); | 1179 ReplyParam p(a, b, c, d, e); |
1178 WriteParam(reply, p); | 1180 WriteParam(reply, p); |
1179 } | 1181 } |
1180 }; | 1182 }; |
1181 | 1183 |
1182 //----------------------------------------------------------------------------- | 1184 //----------------------------------------------------------------------------- |
1183 | 1185 |
1184 } // namespace IPC | 1186 } // namespace IPC |
1185 | 1187 |
1186 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1188 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
OLD | NEW |