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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 std::string /* frame_name */) | 83 std::string /* frame_name */) |
81 | 84 |
82 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, | 85 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented, |
83 std::string /* object_name */, | 86 std::string /* object_name */, |
84 std::string /* property_name */) | 87 std::string /* property_name */) |
85 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) | 88 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) |
86 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, | 89 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, |
87 int /* quota */) | 90 int /* quota */) |
88 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | 91 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
89 bool /* accept */) | 92 bool /* accept */) |
OLD | NEW |