| 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 "components/test_runner/layout_dump_flags.h" | 9 #include "components/test_runner/layout_dump_flags.h" |
| 10 #include "content/public/common/common_param_traits.h" | 10 #include "content/public/common/common_param_traits.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 IPC_STRUCT_TRAITS_MEMBER(debug_render_tree) | 39 IPC_STRUCT_TRAITS_MEMBER(debug_render_tree) |
| 40 IPC_STRUCT_TRAITS_END() | 40 IPC_STRUCT_TRAITS_END() |
| 41 | 41 |
| 42 // Tells the renderer to reset all test runners. | 42 // Tells the renderer to reset all test runners. |
| 43 IPC_MESSAGE_ROUTED0(ShellViewMsg_Reset) | 43 IPC_MESSAGE_ROUTED0(ShellViewMsg_Reset) |
| 44 | 44 |
| 45 // Sets the path to the WebKit checkout. | 45 // Sets the path to the WebKit checkout. |
| 46 IPC_MESSAGE_CONTROL1(ShellViewMsg_SetWebKitSourceDir, | 46 IPC_MESSAGE_CONTROL1(ShellViewMsg_SetWebKitSourceDir, |
| 47 base::FilePath /* webkit source dir */) | 47 base::FilePath /* webkit source dir */) |
| 48 | 48 |
| 49 // Sets the initial configuration to use for layout tests. | 49 // Sets the test config for a layout test that is being started. |
| 50 IPC_MESSAGE_ROUTED1(ShellViewMsg_SetTestConfiguration, | 50 IPC_MESSAGE_ROUTED1(ShellViewMsg_SetTestConfiguration, |
| 51 content::ShellTestConfiguration) | 51 content::ShellTestConfiguration) |
| 52 | 52 |
| 53 // Replicates test config (for an already started test) to a new renderer. |
| 54 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplicateTestConfiguration, |
| 55 content::ShellTestConfiguration) |
| 56 |
| 53 // Tells the main window that a secondary renderer in a different process thinks | 57 // Tells the main window that a secondary renderer in a different process thinks |
| 54 // the test is finished. | 58 // the test is finished. |
| 55 IPC_MESSAGE_ROUTED0(ShellViewMsg_NotifyDone) | 59 IPC_MESSAGE_ROUTED0(ShellViewMsg_NotifyDone) |
| 56 | 60 |
| 57 // Pushes a snapshot of the current session history from the browser process. | 61 // Pushes a snapshot of the current session history from the browser process. |
| 58 // This includes only information about those RenderViews that are in the | 62 // This includes only information about those RenderViews that are in the |
| 59 // same process as the main window of the layout test and that are the current | 63 // same process as the main window of the layout test and that are the current |
| 60 // active RenderView of their WebContents. | 64 // active RenderView of their WebContents. |
| 61 IPC_MESSAGE_ROUTED3( | 65 IPC_MESSAGE_ROUTED3( |
| 62 ShellViewMsg_SessionHistory, | 66 ShellViewMsg_SessionHistory, |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 content::LeakDetectionResult /* result */) | 136 content::LeakDetectionResult /* result */) |
| 133 | 137 |
| 134 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, | 138 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, |
| 135 bool /* enable */) | 139 bool /* enable */) |
| 136 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) | 140 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) |
| 137 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, | 141 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, |
| 138 std::vector<std::string> /* events */) | 142 std::vector<std::string> /* events */) |
| 139 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, | 143 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, |
| 140 std::string /* event */, | 144 std::string /* event */, |
| 141 std::string /* argument */) | 145 std::string /* argument */) |
| OLD | NEW |