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 "content/public/common/common_param_traits.h" | 9 #include "content/public/common/common_param_traits.h" |
10 #include "content/public/common/page_state.h" | 10 #include "content/public/common/page_state.h" |
11 #include "content/shell/common/leak_detection_result.h" | 11 #include "content/shell/common/leak_detection_result.h" |
12 #include "content/shell/common/shell_test_configuration.h" | 12 #include "content/shell/common/shell_test_configuration.h" |
13 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
14 #include "ipc/ipc_platform_file.h" | 14 #include "ipc/ipc_platform_file.h" |
15 #include "third_party/skia/include/core/SkBitmap.h" | 15 #include "third_party/skia/include/core/SkBitmap.h" |
| 16 #include "ui/gfx/ipc/gfx_param_traits.h" |
16 | 17 |
17 #define IPC_MESSAGE_START ShellMsgStart | 18 #define IPC_MESSAGE_START ShellMsgStart |
18 | 19 |
19 IPC_STRUCT_TRAITS_BEGIN(content::ShellTestConfiguration) | 20 IPC_STRUCT_TRAITS_BEGIN(content::ShellTestConfiguration) |
20 IPC_STRUCT_TRAITS_MEMBER(current_working_directory) | 21 IPC_STRUCT_TRAITS_MEMBER(current_working_directory) |
21 IPC_STRUCT_TRAITS_MEMBER(temp_path) | 22 IPC_STRUCT_TRAITS_MEMBER(temp_path) |
22 IPC_STRUCT_TRAITS_MEMBER(test_url) | 23 IPC_STRUCT_TRAITS_MEMBER(test_url) |
23 IPC_STRUCT_TRAITS_MEMBER(enable_pixel_dumping) | 24 IPC_STRUCT_TRAITS_MEMBER(enable_pixel_dumping) |
24 IPC_STRUCT_TRAITS_MEMBER(allow_external_pages) | 25 IPC_STRUCT_TRAITS_MEMBER(allow_external_pages) |
25 IPC_STRUCT_TRAITS_MEMBER(expected_pixel_hash) | 26 IPC_STRUCT_TRAITS_MEMBER(expected_pixel_hash) |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 106 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
106 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
107 | 108 |
108 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 109 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
109 IPC_STRUCT_TRAITS_MEMBER(leaked) | 110 IPC_STRUCT_TRAITS_MEMBER(leaked) |
110 IPC_STRUCT_TRAITS_MEMBER(detail) | 111 IPC_STRUCT_TRAITS_MEMBER(detail) |
111 IPC_STRUCT_TRAITS_END() | 112 IPC_STRUCT_TRAITS_END() |
112 | 113 |
113 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 114 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
114 content::LeakDetectionResult /* result */) | 115 content::LeakDetectionResult /* result */) |
OLD | NEW |