| OLD | NEW |
| 1 // Copyright (c) 2009 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_UI_TEST_UTILS_H_ | 5 #ifndef CHROME_TEST_UI_TEST_UTILS_H_ |
| 6 #define CHROME_TEST_UI_TEST_UTILS_H_ | 6 #define CHROME_TEST_UI_TEST_UTILS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/string16.h" | 11 #include "base/string16.h" |
| 12 #include "chrome/common/notification_observer.h" | 12 #include "chrome/common/notification_observer.h" |
| 13 | 13 |
| 14 class AppModalDialog; |
| 14 class Browser; | 15 class Browser; |
| 15 class DownloadManager; | 16 class DownloadManager; |
| 16 class GURL; | 17 class GURL; |
| 17 class NavigationController; | 18 class NavigationController; |
| 18 class RenderViewHost; | 19 class RenderViewHost; |
| 19 class Value; | 20 class Value; |
| 20 | 21 |
| 21 // A collections of functions designed for use with InProcessBrowserTest. | 22 // A collections of functions designed for use with InProcessBrowserTest. |
| 22 namespace ui_test_utils { | 23 namespace ui_test_utils { |
| 23 | 24 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 bool ExecuteJavaScriptAndExtractString(RenderViewHost* render_view_host, | 79 bool ExecuteJavaScriptAndExtractString(RenderViewHost* render_view_host, |
| 79 const std::wstring& frame_xpath, | 80 const std::wstring& frame_xpath, |
| 80 const std::wstring& script, | 81 const std::wstring& script, |
| 81 std::string* result); | 82 std::string* result); |
| 82 | 83 |
| 83 GURL GetTestUrl(const std::wstring& dir, const std::wstring file); | 84 GURL GetTestUrl(const std::wstring& dir, const std::wstring file); |
| 84 | 85 |
| 85 // Creates an observer that waits for |download_manager| to report that it | 86 // Creates an observer that waits for |download_manager| to report that it |
| 86 // has a total of |count| downloads that have been handles | 87 // has a total of |count| downloads that have been handles |
| 87 void WaitForDownloadCount(DownloadManager* download_manager, size_t count); | 88 void WaitForDownloadCount(DownloadManager* download_manager, size_t count); |
| 89 |
| 90 // Blocks until an application modal dialog is showns and returns it. |
| 91 AppModalDialog* WaitForAppModalDialog(); |
| 92 |
| 88 } | 93 } |
| 89 | 94 |
| 90 #endif // CHROME_TEST_UI_TEST_UTILS_H_ | 95 #endif // CHROME_TEST_UI_TEST_UTILS_H_ |
| OLD | NEW |