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