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 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
11 #include <windows.h> | 11 #include <windows.h> |
12 #endif | 12 #endif |
13 | 13 |
14 #include "base/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "base/threading/thread.h" | 15 #include "base/threading/thread.h" |
16 #include "chrome/test/automation/automation_handle_tracker.h" | 16 #include "chrome/test/automation/automation_handle_tracker.h" |
17 | 17 |
18 class BrowserProxy; | 18 class BrowserProxy; |
19 class WindowProxy; | 19 class WindowProxy; |
20 | 20 |
21 namespace gfx { | 21 namespace gfx { |
22 class Rect; | 22 class Rect; |
23 } | 23 } |
24 | 24 |
(...skipping 18 matching lines...) Expand all Loading... |
43 // bounds was successful. | 43 // bounds was successful. |
44 bool SetBounds(const gfx::Rect& bounds); | 44 bool SetBounds(const gfx::Rect& bounds); |
45 | 45 |
46 protected: | 46 protected: |
47 virtual ~WindowProxy() {} | 47 virtual ~WindowProxy() {} |
48 private: | 48 private: |
49 DISALLOW_COPY_AND_ASSIGN(WindowProxy); | 49 DISALLOW_COPY_AND_ASSIGN(WindowProxy); |
50 }; | 50 }; |
51 | 51 |
52 #endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ | 52 #endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__ |
OLD | NEW |