| 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/shell/shell_test_configuration.h" | 10 #include "content/shell/common/shell_test_configuration.h" |
| 11 #include "ipc/ipc_message_macros.h" | 11 #include "ipc/ipc_message_macros.h" |
| 12 #include "ipc/ipc_platform_file.h" | 12 #include "ipc/ipc_platform_file.h" |
| 13 #include "third_party/skia/include/core/SkBitmap.h" | 13 #include "third_party/skia/include/core/SkBitmap.h" |
| 14 | 14 |
| 15 #define IPC_MESSAGE_START ShellMsgStart | 15 #define IPC_MESSAGE_START ShellMsgStart |
| 16 | 16 |
| 17 IPC_STRUCT_TRAITS_BEGIN(content::ShellTestConfiguration) | 17 IPC_STRUCT_TRAITS_BEGIN(content::ShellTestConfiguration) |
| 18 IPC_STRUCT_TRAITS_MEMBER(current_working_directory) | 18 IPC_STRUCT_TRAITS_MEMBER(current_working_directory) |
| 19 IPC_STRUCT_TRAITS_MEMBER(temp_path) | 19 IPC_STRUCT_TRAITS_MEMBER(temp_path) |
| 20 IPC_STRUCT_TRAITS_MEMBER(test_url) | 20 IPC_STRUCT_TRAITS_MEMBER(test_url) |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 std::string /* frame_name */) | 94 std::string /* frame_name */) |
| 95 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) | 95 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) |
| 96 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, | 96 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, |
| 97 int /* quota */) | 97 int /* quota */) |
| 98 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | 98 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
| 99 bool /* accept */) | 99 bool /* accept */) |
| 100 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | 100 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, |
| 101 float /* factor */) | 101 float /* factor */) |
| 102 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 102 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
| 103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
| OLD | NEW |