| 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 17 matching lines...) Expand all Loading... |
| 28 IPC_STRUCT_TRAITS_MEMBER(initial_size) | 28 IPC_STRUCT_TRAITS_MEMBER(initial_size) |
| 29 IPC_STRUCT_TRAITS_END() | 29 IPC_STRUCT_TRAITS_END() |
| 30 | 30 |
| 31 IPC_STRUCT_TRAITS_BEGIN(test_runner::LayoutDumpFlags) | 31 IPC_STRUCT_TRAITS_BEGIN(test_runner::LayoutDumpFlags) |
| 32 IPC_STRUCT_TRAITS_MEMBER(dump_as_text) | 32 IPC_STRUCT_TRAITS_MEMBER(dump_as_text) |
| 33 IPC_STRUCT_TRAITS_MEMBER(dump_child_frames_as_text) | 33 IPC_STRUCT_TRAITS_MEMBER(dump_child_frames_as_text) |
| 34 IPC_STRUCT_TRAITS_MEMBER(dump_as_markup) | 34 IPC_STRUCT_TRAITS_MEMBER(dump_as_markup) |
| 35 IPC_STRUCT_TRAITS_MEMBER(dump_child_frames_as_markup) | 35 IPC_STRUCT_TRAITS_MEMBER(dump_child_frames_as_markup) |
| 36 IPC_STRUCT_TRAITS_MEMBER(dump_child_frame_scroll_positions) | 36 IPC_STRUCT_TRAITS_MEMBER(dump_child_frame_scroll_positions) |
| 37 IPC_STRUCT_TRAITS_MEMBER(is_printing) | 37 IPC_STRUCT_TRAITS_MEMBER(is_printing) |
| 38 IPC_STRUCT_TRAITS_MEMBER(dump_line_box_trees) | |
| 39 IPC_STRUCT_TRAITS_MEMBER(debug_render_tree) | |
| 40 IPC_STRUCT_TRAITS_END() | 38 IPC_STRUCT_TRAITS_END() |
| 41 | 39 |
| 42 // Tells the renderer to reset all test runners. | 40 // Tells the renderer to reset all test runners. |
| 43 IPC_MESSAGE_ROUTED0(ShellViewMsg_Reset) | 41 IPC_MESSAGE_ROUTED0(ShellViewMsg_Reset) |
| 44 | 42 |
| 45 // Sets the path to the WebKit checkout. | 43 // Sets the path to the WebKit checkout. |
| 46 IPC_MESSAGE_CONTROL1(ShellViewMsg_SetWebKitSourceDir, | 44 IPC_MESSAGE_CONTROL1(ShellViewMsg_SetWebKitSourceDir, |
| 47 base::FilePath /* webkit source dir */) | 45 base::FilePath /* webkit source dir */) |
| 48 | 46 |
| 49 // Sets the initial configuration to use for layout tests. | 47 // Sets the initial configuration to use for layout tests. |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 content::LeakDetectionResult /* result */) | 130 content::LeakDetectionResult /* result */) |
| 133 | 131 |
| 134 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, | 132 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, |
| 135 bool /* enable */) | 133 bool /* enable */) |
| 136 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) | 134 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) |
| 137 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, | 135 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, |
| 138 std::vector<std::string> /* events */) | 136 std::vector<std::string> /* events */) |
| 139 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, | 137 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, |
| 140 std::string /* event */, | 138 std::string /* event */, |
| 141 std::string /* argument */) | 139 std::string /* argument */) |
| OLD | NEW |