OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ | 5 #ifndef CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ |
6 #define CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ | 6 #define CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
| 10 #include "app/message_box_flags.h" |
10 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
11 #include "base/process_util.h" | 12 #include "base/process_util.h" |
12 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
13 #include "base/time.h" | 14 #include "base/time.h" |
14 #include "base/thread.h" | 15 #include "base/thread.h" |
15 #include "base/waitable_event.h" | 16 #include "base/waitable_event.h" |
16 #include "chrome/common/ipc_channel_proxy.h" | 17 #include "chrome/common/ipc_channel_proxy.h" |
17 #include "chrome/common/ipc_message.h" | 18 #include "chrome/common/ipc_message.h" |
18 #include "chrome/common/ipc_sync_channel.h" | 19 #include "chrome/common/ipc_sync_channel.h" |
19 #include "chrome/common/message_box_flags.h" | |
20 #include "chrome/test/automation/automation_handle_tracker.h" | 20 #include "chrome/test/automation/automation_handle_tracker.h" |
21 #include "chrome/test/automation/automation_messages.h" | 21 #include "chrome/test/automation/automation_messages.h" |
22 | 22 |
23 class AutomationRequest; | 23 class AutomationRequest; |
24 class BrowserProxy; | 24 class BrowserProxy; |
25 class TabProxy; | 25 class TabProxy; |
26 class WindowProxy; | 26 class WindowProxy; |
27 | 27 |
28 // This is an interface that AutomationProxy-related objects can use to | 28 // This is an interface that AutomationProxy-related objects can use to |
29 // access the message-sending abilities of the Proxy. | 29 // access the message-sending abilities of the Proxy. |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 // a version resource. | 244 // a version resource. |
245 bool perform_version_check_; | 245 bool perform_version_check_; |
246 | 246 |
247 // Delay to let the browser execute the command. | 247 // Delay to let the browser execute the command. |
248 base::TimeDelta command_execution_timeout_; | 248 base::TimeDelta command_execution_timeout_; |
249 | 249 |
250 DISALLOW_COPY_AND_ASSIGN(AutomationProxy); | 250 DISALLOW_COPY_AND_ASSIGN(AutomationProxy); |
251 }; | 251 }; |
252 | 252 |
253 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ | 253 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ |
OLD | NEW |