| 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 "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
| 11 #include "third_party/skia/include/core/SkBitmap.h" | 11 #include "third_party/skia/include/core/SkBitmap.h" |
| 12 | 12 |
| 13 #define IPC_MESSAGE_START ShellMsgStart | 13 #define IPC_MESSAGE_START ShellMsgStart |
| 14 | 14 |
| 15 IPC_STRUCT_BEGIN(ShellViewMsg_SetTestConfiguration_Params) | 15 IPC_STRUCT_BEGIN(ShellViewMsg_SetTestConfiguration_Params) |
| 16 // The current working directory. | 16 // The current working directory. |
| 17 IPC_STRUCT_MEMBER(base::FilePath, current_working_directory) | 17 IPC_STRUCT_MEMBER(base::FilePath, current_working_directory) |
| 18 | 18 |
| 19 // The temporary directory of the system. |
| 20 IPC_STRUCT_MEMBER(base::FilePath, temp_path) |
| 21 |
| 19 // The URL of the current layout test. | 22 // The URL of the current layout test. |
| 20 IPC_STRUCT_MEMBER(GURL, test_url) | 23 IPC_STRUCT_MEMBER(GURL, test_url) |
| 21 | 24 |
| 22 // True if pixel tests are enabled. | 25 // True if pixel tests are enabled. |
| 23 IPC_STRUCT_MEMBER(bool, enable_pixel_dumping) | 26 IPC_STRUCT_MEMBER(bool, enable_pixel_dumping) |
| 24 | 27 |
| 25 // The layout test timeout in milliseconds. | 28 // The layout test timeout in milliseconds. |
| 26 IPC_STRUCT_MEMBER(int, layout_test_timeout) | 29 IPC_STRUCT_MEMBER(int, layout_test_timeout) |
| 27 | 30 |
| 28 // True if tests can open external URLs | 31 // True if tests can open external URLs |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 77 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
| 75 | 78 |
| 76 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, | 79 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, |
| 77 std::string /* object_name */, | 80 std::string /* object_name */, |
| 78 std::string /* property_name */) | 81 std::string /* property_name */) |
| 79 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) | 82 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) |
| 80 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, | 83 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, |
| 81 int /* quota */) | 84 int /* quota */) |
| 82 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | 85 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
| 83 bool /* accept */) | 86 bool /* accept */) |
| OLD | NEW |