| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
| 8 #include <algorithm> | 8 #include <algorithm> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ChromeBenchmarkingMsgStart, | 97 ChromeBenchmarkingMsgStart, |
| 98 IntentsMsgStart, | 98 IntentsMsgStart, |
| 99 JavaBridgeMsgStart, | 99 JavaBridgeMsgStart, |
| 100 GamepadMsgStart, | 100 GamepadMsgStart, |
| 101 ShellMsgStart, | 101 ShellMsgStart, |
| 102 AccessibilityMsgStart, | 102 AccessibilityMsgStart, |
| 103 PrerenderMsgStart, | 103 PrerenderMsgStart, |
| 104 ChromotingMsgStart, | 104 ChromotingMsgStart, |
| 105 OldBrowserPluginMsgStart, | 105 OldBrowserPluginMsgStart, |
| 106 BrowserPluginMsgStart, | 106 BrowserPluginMsgStart, |
| 107 ViewerMsgStart, |
| 107 LastIPCMsgStart // Must come last. | 108 LastIPCMsgStart // Must come last. |
| 108 }; | 109 }; |
| 109 | 110 |
| 110 class FilePath; | 111 class FilePath; |
| 111 class NullableString16; | 112 class NullableString16; |
| 112 | 113 |
| 113 namespace base { | 114 namespace base { |
| 114 class DictionaryValue; | 115 class DictionaryValue; |
| 115 class ListValue; | 116 class ListValue; |
| 116 class Time; | 117 class Time; |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 template<typename TA, typename TB, typename TC, typename TD, typename TE> | 905 template<typename TA, typename TB, typename TC, typename TD, typename TE> |
| 905 static void WriteReplyParams(Message* reply, TA a, TB b, TC c, TD d, TE e) { | 906 static void WriteReplyParams(Message* reply, TA a, TB b, TC c, TD d, TE e) { |
| 906 ReplyParam p(a, b, c, d, e); | 907 ReplyParam p(a, b, c, d, e); |
| 907 WriteParam(reply, p); | 908 WriteParam(reply, p); |
| 908 } | 909 } |
| 909 }; | 910 }; |
| 910 | 911 |
| 911 } // namespace IPC | 912 } // namespace IPC |
| 912 | 913 |
| 913 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 914 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
| OLD | NEW |