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

Unified Diff: chrome/test/base/ui_test_utils.cc

Issue 562603002: Move PageTransition from //content/public/common to //ui/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/base/test_browser_window.cc ('k') | chrome/test/base/web_ui_browser_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/ui_test_utils.cc
diff --git a/chrome/test/base/ui_test_utils.cc b/chrome/test/base/ui_test_utils.cc
index 6e7a1ceebfac6d39dfcbd8774a1324513d25714a..b295a00e5ab7c6888643cbfce9d2c6efa506df07 100644
--- a/chrome/test/base/ui_test_utils.cc
+++ b/chrome/test/base/ui_test_utils.cc
@@ -169,7 +169,7 @@ void NavigateToURL(chrome::NavigateParams* params) {
void NavigateToURLWithPost(Browser* browser, const GURL& url) {
chrome::NavigateParams params(browser, url,
- content::PAGE_TRANSITION_FORM_SUBMIT);
+ ui::PAGE_TRANSITION_FORM_SUBMIT);
params.uses_post = true;
NavigateToURL(&params);
}
@@ -205,7 +205,7 @@ static void NavigateToURLWithDispositionBlockUntilNavigationsComplete(
content::NotificationService::AllSources());
browser->OpenURL(OpenURLParams(
- url, Referrer(), disposition, content::PAGE_TRANSITION_TYPED, false));
+ url, Referrer(), disposition, ui::PAGE_TRANSITION_TYPED, false));
if (browser_test_flags & BROWSER_TEST_WAIT_FOR_BROWSER)
browser = WaitForBrowserNotInSet(initial_browsers);
if (browser_test_flags & BROWSER_TEST_WAIT_FOR_TAB)
« no previous file with comments | « chrome/test/base/test_browser_window.cc ('k') | chrome/test/base/web_ui_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698