| 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_BROWSER_PROXY_H_ | 5 #ifndef CHROME_TEST_AUTOMATION_BROWSER_PROXY_H_ |
| 6 #define CHROME_TEST_AUTOMATION_BROWSER_PROXY_H_ | 6 #define CHROME_TEST_AUTOMATION_BROWSER_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 <string> | 15 #include <string> |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 #include "base/compiler_specific.h" | 18 #include "base/compiler_specific.h" |
| 19 #include "chrome/browser/browser.h" | 19 #include "chrome/browser/ui/browser.h" |
| 20 #include "chrome/common/content_settings.h" | 20 #include "chrome/common/content_settings.h" |
| 21 #include "chrome/test/automation/automation_handle_tracker.h" | 21 #include "chrome/test/automation/automation_handle_tracker.h" |
| 22 | 22 |
| 23 class GURL; | 23 class GURL; |
| 24 class TabProxy; | 24 class TabProxy; |
| 25 class WindowProxy; | 25 class WindowProxy; |
| 26 class AutocompleteEditProxy; | 26 class AutocompleteEditProxy; |
| 27 | 27 |
| 28 namespace gfx { | 28 namespace gfx { |
| 29 class Point; | 29 class Point; |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 std::vector<float>* stop_times); | 240 std::vector<float>* stop_times); |
| 241 | 241 |
| 242 | 242 |
| 243 protected: | 243 protected: |
| 244 virtual ~BrowserProxy() {} | 244 virtual ~BrowserProxy() {} |
| 245 private: | 245 private: |
| 246 DISALLOW_COPY_AND_ASSIGN(BrowserProxy); | 246 DISALLOW_COPY_AND_ASSIGN(BrowserProxy); |
| 247 }; | 247 }; |
| 248 | 248 |
| 249 #endif // CHROME_TEST_AUTOMATION_BROWSER_PROXY_H_ | 249 #endif // CHROME_TEST_AUTOMATION_BROWSER_PROXY_H_ |
| OLD | NEW |