OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_WINDOW_PROXY_H__ | 5 #ifndef CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ |
6 #define CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ | 6 #define CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
11 #if defined(OS_WIN) | 11 #if defined(OS_WIN) |
12 #include <windows.h> | 12 #include <windows.h> |
13 #endif | 13 #endif |
14 | 14 |
15 #include "app/keyboard_codes.h" | 15 #include "app/keyboard_codes.h" |
16 #include "base/string16.h" | 16 #include "base/string16.h" |
17 #include "base/thread.h" | 17 #include "base/threading/thread.h" |
18 #include "chrome/test/automation/automation_handle_tracker.h" | 18 #include "chrome/test/automation/automation_handle_tracker.h" |
19 | 19 |
20 class BrowserProxy; | 20 class BrowserProxy; |
21 class WindowProxy; | 21 class WindowProxy; |
22 | 22 |
23 namespace gfx { | 23 namespace gfx { |
24 class Point; | 24 class Point; |
25 class Rect; | 25 class Rect; |
26 } | 26 } |
27 | 27 |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 // before the specified timeout. | 101 // before the specified timeout. |
102 scoped_refptr<BrowserProxy> GetBrowserWithTimeout(uint32 timeout_ms, | 102 scoped_refptr<BrowserProxy> GetBrowserWithTimeout(uint32 timeout_ms, |
103 bool* is_timeout); | 103 bool* is_timeout); |
104 protected: | 104 protected: |
105 virtual ~WindowProxy() {} | 105 virtual ~WindowProxy() {} |
106 private: | 106 private: |
107 DISALLOW_COPY_AND_ASSIGN(WindowProxy); | 107 DISALLOW_COPY_AND_ASSIGN(WindowProxy); |
108 }; | 108 }; |
109 | 109 |
110 #endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ | 110 #endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ |
OLD | NEW |