| 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "content/public/common/common_param_traits.h" | 10 #include "content/public/common/common_param_traits.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 107 |
| 108 // WebTestDelegate related. | 108 // WebTestDelegate related. |
| 109 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, | 109 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, |
| 110 content::WebPreferences /* preferences */) | 110 content::WebPreferences /* preferences */) |
| 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, | 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, |
| 112 std::string /* message */) | 112 std::string /* message */) |
| 113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) | 113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) |
| 114 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, | 114 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, |
| 115 std::string /* settings */, | 115 std::string /* settings */, |
| 116 std::string /* frontend_url */) | 116 std::string /* frontend_url */) |
| 117 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_EvaluateInDevTools, | |
| 118 int /* call_id */, | |
| 119 std::string /* script */) | |
| 120 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 117 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
| 121 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, | 118 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
| 122 int /* offset */) | 119 int /* offset */) |
| 123 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) | 120 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) |
| 124 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, | 121 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, |
| 125 GURL /* url */, | 122 GURL /* url */, |
| 126 std::string /* frame_name */) | 123 std::string /* frame_name */) |
| 127 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 124 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
| 128 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 125 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
| 129 | 126 |
| 130 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 127 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
| 131 IPC_STRUCT_TRAITS_MEMBER(leaked) | 128 IPC_STRUCT_TRAITS_MEMBER(leaked) |
| 132 IPC_STRUCT_TRAITS_MEMBER(detail) | 129 IPC_STRUCT_TRAITS_MEMBER(detail) |
| 133 IPC_STRUCT_TRAITS_END() | 130 IPC_STRUCT_TRAITS_END() |
| 134 | 131 |
| 135 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 132 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
| 136 content::LeakDetectionResult /* result */) | 133 content::LeakDetectionResult /* result */) |
| 137 | 134 |
| 138 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, | 135 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, |
| 139 bool /* enable */) | 136 bool /* enable */) |
| 140 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) | 137 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) |
| 141 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, | 138 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, |
| 142 std::vector<std::string> /* events */) | 139 std::vector<std::string> /* events */) |
| 143 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, | 140 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, |
| 144 std::string /* event */, | 141 std::string /* event */, |
| 145 std::string /* argument */) | 142 std::string /* argument */) |
| OLD | NEW |