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 "app/message_box_flags.h" |
| 11 #include "app/gfx/native_widget_types.h" |
11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
12 #include "base/gfx/native_widget_types.h" | |
13 #include "base/process_util.h" | 13 #include "base/process_util.h" |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "base/thread.h" | 16 #include "base/thread.h" |
17 #include "base/waitable_event.h" | 17 #include "base/waitable_event.h" |
18 #include "chrome/test/automation/automation_constants.h" | 18 #include "chrome/test/automation/automation_constants.h" |
19 #include "chrome/test/automation/automation_handle_tracker.h" | 19 #include "chrome/test/automation/automation_handle_tracker.h" |
20 #include "googleurl/src/gurl.h" | 20 #include "googleurl/src/gurl.h" |
21 #include "ipc/ipc_channel_proxy.h" | 21 #include "ipc/ipc_channel_proxy.h" |
22 #include "ipc/ipc_message.h" | 22 #include "ipc/ipc_message.h" |
(...skipping 239 matching lines...) Loading... |
262 // a version resource. | 262 // a version resource. |
263 bool perform_version_check_; | 263 bool perform_version_check_; |
264 | 264 |
265 // Delay to let the browser execute the command. | 265 // Delay to let the browser execute the command. |
266 base::TimeDelta command_execution_timeout_; | 266 base::TimeDelta command_execution_timeout_; |
267 | 267 |
268 DISALLOW_COPY_AND_ASSIGN(AutomationProxy); | 268 DISALLOW_COPY_AND_ASSIGN(AutomationProxy); |
269 }; | 269 }; |
270 | 270 |
271 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ | 271 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_H__ |
OLD | NEW |