OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Defines the IPC messages used by the automation interface. | 5 // Defines the IPC messages used by the automation interface. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
11 #include "chrome/common/content_settings.h" | 11 #include "chrome/common/content_settings.h" |
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
951 int /* request_id */, | 951 int /* request_id */, |
952 AutomationURLResponse /* response */) | 952 AutomationURLResponse /* response */) |
953 | 953 |
954 // Data read via automation | 954 // Data read via automation |
955 IPC_MESSAGE_ROUTED2(AutomationMsg_RequestData, | 955 IPC_MESSAGE_ROUTED2(AutomationMsg_RequestData, |
956 int /* request_id */, | 956 int /* request_id */, |
957 std::string /* data */) | 957 std::string /* data */) |
958 | 958 |
959 IPC_MESSAGE_ROUTED2(AutomationMsg_RequestEnd, | 959 IPC_MESSAGE_ROUTED2(AutomationMsg_RequestEnd, |
960 int /* request_id */, | 960 int /* request_id */, |
961 URLRequestStatus /* status */) | 961 net::URLRequestStatus /* status */) |
962 | 962 |
963 IPC_MESSAGE_CONTROL1(AutomationMsg_PrintAsync, | 963 IPC_MESSAGE_CONTROL1(AutomationMsg_PrintAsync, |
964 int /* tab_handle */) | 964 int /* tab_handle */) |
965 | 965 |
966 IPC_MESSAGE_ROUTED2(AutomationMsg_SetCookieAsync, | 966 IPC_MESSAGE_ROUTED2(AutomationMsg_SetCookieAsync, |
967 GURL /* url */, | 967 GURL /* url */, |
968 std::string /* cookie */) | 968 std::string /* cookie */) |
969 | 969 |
970 IPC_MESSAGE_CONTROL1(AutomationMsg_SelectAll, | 970 IPC_MESSAGE_CONTROL1(AutomationMsg_SelectAll, |
971 int /* tab handle */) | 971 int /* tab handle */) |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1438 int, | 1438 int, |
1439 FilePath, | 1439 FilePath, |
1440 bool) | 1440 bool) |
1441 | 1441 |
1442 // Notify the JavaScript engine in the render to change its parameters | 1442 // Notify the JavaScript engine in the render to change its parameters |
1443 // while performing stress testing. | 1443 // while performing stress testing. |
1444 IPC_MESSAGE_ROUTED3(AutomationMsg_JavaScriptStressTestControl, | 1444 IPC_MESSAGE_ROUTED3(AutomationMsg_JavaScriptStressTestControl, |
1445 int /* tab handle */, | 1445 int /* tab handle */, |
1446 int /* command */, | 1446 int /* command */, |
1447 int /* type or run */) | 1447 int /* type or run */) |
OLD | NEW |