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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AudioDump, | 96 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AudioDump, |
97 std::vector<unsigned char> /* audio data */) | 97 std::vector<unsigned char> /* audio data */) |
98 | 98 |
99 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinished) | 99 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinished) |
100 | 100 |
101 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ResetDone) | 101 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ResetDone) |
102 | 102 |
103 // WebTestDelegate related. | 103 // WebTestDelegate related. |
104 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, | 104 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, |
105 content::WebPreferences /* preferences */) | 105 content::WebPreferences /* preferences */) |
106 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, | |
107 std::string /* message */) | |
108 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) | 106 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) |
109 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, | 107 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, |
110 std::string /* settings */, | 108 std::string /* settings */, |
111 std::string /* frontend_url */) | 109 std::string /* frontend_url */) |
112 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_EvaluateInDevTools, | 110 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_EvaluateInDevTools, |
113 int /* call_id */, | 111 int /* call_id */, |
114 std::string /* script */) | 112 std::string /* script */) |
115 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
116 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, | 114 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
117 int /* offset */) | 115 int /* offset */) |
(...skipping 13 matching lines...) Expand all Loading... |
131 content::LeakDetectionResult /* result */) | 129 content::LeakDetectionResult /* result */) |
132 | 130 |
133 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, | 131 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, |
134 bool /* enable */) | 132 bool /* enable */) |
135 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) | 133 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) |
136 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, | 134 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, |
137 std::vector<std::string> /* events */) | 135 std::vector<std::string> /* events */) |
138 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, | 136 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, |
139 std::string /* event */, | 137 std::string /* event */, |
140 std::string /* argument */) | 138 std::string /* argument */) |
OLD | NEW |