Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Side by Side Diff: chrome/test/ui_test_utils.h

Issue 149460: Convert JavascriptAlertActivatesTab to browser_tests framework. (Closed)
Patch Set: kill duplication Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698