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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 // WebTestDelegate related. | 111 // WebTestDelegate related. |
112 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, | 112 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, |
113 content::WebPreferences /* preferences */) | 113 content::WebPreferences /* preferences */) |
114 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, | 114 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, |
115 std::string /* message */) | 115 std::string /* message */) |
116 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) | 116 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) |
117 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, | 117 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, |
118 std::string /* settings */, | 118 std::string /* settings */, |
119 std::string /* frontend_url */) | 119 std::string /* frontend_url */) |
| 120 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_EvaluateInDevTools, |
| 121 int /* call_id */, |
| 122 std::string /* script */) |
120 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 123 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
121 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, | 124 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
122 int /* offset */) | 125 int /* offset */) |
123 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) | 126 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) |
124 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, | 127 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, |
125 GURL /* url */, | 128 GURL /* url */, |
126 std::string /* frame_name */) | 129 std::string /* frame_name */) |
127 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 130 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
128 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 131 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
129 | 132 |
130 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 133 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
131 IPC_STRUCT_TRAITS_MEMBER(leaked) | 134 IPC_STRUCT_TRAITS_MEMBER(leaked) |
132 IPC_STRUCT_TRAITS_MEMBER(detail) | 135 IPC_STRUCT_TRAITS_MEMBER(detail) |
133 IPC_STRUCT_TRAITS_END() | 136 IPC_STRUCT_TRAITS_END() |
134 | 137 |
135 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 138 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
136 content::LeakDetectionResult /* result */) | 139 content::LeakDetectionResult /* result */) |
137 | 140 |
138 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, | 141 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, |
139 bool /* enable */) | 142 bool /* enable */) |
140 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) | 143 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) |
141 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, | 144 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, |
142 std::vector<std::string> /* events */) | 145 std::vector<std::string> /* events */) |
143 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, | 146 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, |
144 std::string /* event */, | 147 std::string /* event */, |
145 std::string /* argument */) | 148 std::string /* argument */) |
OLD | NEW |