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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 FirefoxImporterUnittestMsgStart, | 61 FirefoxImporterUnittestMsgStart, |
62 FileUtilitiesMsgStart, | 62 FileUtilitiesMsgStart, |
63 MimeRegistryMsgStart, | 63 MimeRegistryMsgStart, |
64 DatabaseMsgStart, | 64 DatabaseMsgStart, |
65 DOMStorageMsgStart, | 65 DOMStorageMsgStart, |
66 IndexedDBMsgStart, | 66 IndexedDBMsgStart, |
67 PepperFileMsgStart, | 67 PepperFileMsgStart, |
68 SpeechInputMsgStart, | 68 SpeechInputMsgStart, |
69 PepperMsgStart, | 69 PepperMsgStart, |
70 AutoFillMsgStart, | 70 AutoFillMsgStart, |
| 71 SafeBrowsingMsgStart, |
71 }; | 72 }; |
72 | 73 |
73 class DictionaryValue; | 74 class DictionaryValue; |
74 class FilePath; | 75 class FilePath; |
75 class ListValue; | 76 class ListValue; |
76 class NullableString16; | 77 class NullableString16; |
77 | 78 |
78 namespace base { | 79 namespace base { |
79 class Time; | 80 class Time; |
80 class TimeDelta; | 81 class TimeDelta; |
(...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1188 ReplyParam p(a, b, c, d, e); | 1189 ReplyParam p(a, b, c, d, e); |
1189 WriteParam(reply, p); | 1190 WriteParam(reply, p); |
1190 } | 1191 } |
1191 }; | 1192 }; |
1192 | 1193 |
1193 //----------------------------------------------------------------------------- | 1194 //----------------------------------------------------------------------------- |
1194 | 1195 |
1195 } // namespace IPC | 1196 } // namespace IPC |
1196 | 1197 |
1197 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1198 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
OLD | NEW |