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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 SafeBrowsingMsgStart, |
72 P2PMsgStart, | 72 P2PMsgStart, |
73 SocketStreamMsgStart, | 73 SocketStreamMsgStart, |
| 74 ResourceMsgStart, |
74 }; | 75 }; |
75 | 76 |
76 class DictionaryValue; | 77 class DictionaryValue; |
77 class FilePath; | 78 class FilePath; |
78 class ListValue; | 79 class ListValue; |
79 class NullableString16; | 80 class NullableString16; |
80 | 81 |
81 namespace base { | 82 namespace base { |
82 class Time; | 83 class Time; |
83 class TimeDelta; | 84 class TimeDelta; |
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1197 ReplyParam p(a, b, c, d, e); | 1198 ReplyParam p(a, b, c, d, e); |
1198 WriteParam(reply, p); | 1199 WriteParam(reply, p); |
1199 } | 1200 } |
1200 }; | 1201 }; |
1201 | 1202 |
1202 //----------------------------------------------------------------------------- | 1203 //----------------------------------------------------------------------------- |
1203 | 1204 |
1204 } // namespace IPC | 1205 } // namespace IPC |
1205 | 1206 |
1206 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1207 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
OLD | NEW |