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