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 #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 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/process_util.h" | |
15 #include "base/synchronization/waitable_event.h" | 14 #include "base/synchronization/waitable_event.h" |
16 #include "base/threading/platform_thread.h" | 15 #include "base/threading/platform_thread.h" |
17 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
18 #include "base/time/time.h" | 17 #include "base/time/time.h" |
19 #include "chrome/browser/ui/browser.h" | 18 #include "chrome/browser/ui/browser.h" |
20 #include "chrome/common/automation_constants.h" | 19 #include "chrome/common/automation_constants.h" |
21 #include "chrome/test/automation/automation_handle_tracker.h" | 20 #include "chrome/test/automation/automation_handle_tracker.h" |
22 #include "chrome/test/automation/browser_proxy.h" | 21 #include "chrome/test/automation/browser_proxy.h" |
23 #include "ipc/ipc_channel_proxy.h" | 22 #include "ipc/ipc_channel_proxy.h" |
24 #include "ipc/ipc_sender.h" | 23 #include "ipc/ipc_sender.h" |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 | 252 |
254 // Delay to let the browser execute the command. | 253 // Delay to let the browser execute the command. |
255 base::TimeDelta action_timeout_; | 254 base::TimeDelta action_timeout_; |
256 | 255 |
257 base::PlatformThreadId listener_thread_id_; | 256 base::PlatformThreadId listener_thread_id_; |
258 | 257 |
259 DISALLOW_COPY_AND_ASSIGN(AutomationProxy); | 258 DISALLOW_COPY_AND_ASSIGN(AutomationProxy); |
260 }; | 259 }; |
261 | 260 |
262 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H_ | 261 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H_ |
OLD | NEW |