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

Unified Diff: chromecast/shell/browser/test/chromecast_browser_test.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
Index: chromecast/shell/browser/test/chromecast_browser_test.cc
diff --git a/chromecast/shell/browser/test/chromecast_browser_test.cc b/chromecast/shell/browser/test/chromecast_browser_test.cc
index bb1ab5d47fb87c0274a5021091ff9c1a0fcac480..19250751e5f63ec18f066a01a2ea5cd7b37f3d25 100644
--- a/chromecast/shell/browser/test/chromecast_browser_test.cc
+++ b/chromecast/shell/browser/test/chromecast_browser_test.cc
@@ -58,9 +58,9 @@ void ChromecastBrowserTest::NavigateToURL(content::WebContents* window,
content::WaitForLoadStop(window);
content::TestNavigationObserver same_tab_observer(window, 1);
content::NavigationController::LoadURLParams params(url);
- params.transition_type = content::PageTransitionFromInt(
- content::PAGE_TRANSITION_TYPED |
- content::PAGE_TRANSITION_FROM_ADDRESS_BAR);
+ params.transition_type = ui::PageTransitionFromInt(
+ ui::PAGE_TRANSITION_TYPED |
+ ui::PAGE_TRANSITION_FROM_ADDRESS_BAR);
window->GetController().LoadURLWithParams(params);
same_tab_observer.Wait();
}

Powered by Google App Engine
This is Rietveld 408576698