| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_UITEST_H__ | 5 #ifndef CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_UITEST_H_ |
| 6 #define CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_UITEST_H__ | 6 #define CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_UITEST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/gfx/native_widget_types.h" | 10 #include "app/gfx/native_widget_types.h" |
| 11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 12 #include "base/platform_thread.h" | 12 #include "base/platform_thread.h" |
| 13 #include "base/time.h" | 13 #include "base/time.h" |
| 14 #include "chrome/test/automation/automation_proxy.h" | 14 #include "chrome/test/automation/automation_proxy.h" |
| 15 #include "chrome/test/ui/ui_test.h" | 15 #include "chrome/test/ui/ui_test.h" |
| 16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
| 17 | 17 |
| 18 class TabProxy; | 18 class TabProxy; |
| 19 | 19 |
| 20 // Base class for automation proxy testing. | 20 // Base class for automation proxy testing. |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 std::string message_, origin_, target_; | 128 std::string message_, origin_, target_; |
| 129 QuitAfter quit_after_; | 129 QuitAfter quit_after_; |
| 130 const wchar_t* host_window_class_; | 130 const wchar_t* host_window_class_; |
| 131 gfx::NativeWindow host_window_; | 131 gfx::NativeWindow host_window_; |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 // A test harness for testing external tabs. | 134 // A test harness for testing external tabs. |
| 135 typedef CustomAutomationProxyTest<AutomationProxyForExternalTab> | 135 typedef CustomAutomationProxyTest<AutomationProxyForExternalTab> |
| 136 ExternalTabTestType; | 136 ExternalTabTestType; |
| 137 | 137 |
| 138 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_UITEST_H__ | 138 #endif // CHROME_TEST_AUTOMATION_AUTOMATION_PROXY_UITEST_H_ |
| OLD | NEW |