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

Unified Diff: chrome/browser/browser_focus_uitest.cc

Issue 8253002: Move PageTransition into content namespace. While I'm touching all these files, I've also updated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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/browser/browser_commands_unittest.cc ('k') | chrome/browser/browsing_data_remover_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_focus_uitest.cc
===================================================================
--- chrome/browser/browser_focus_uitest.cc (revision 105162)
+++ chrome/browser/browser_focus_uitest.cc (working copy)
@@ -289,7 +289,7 @@
// Create several tabs.
for (int i = 0; i < 4; ++i)
- browser()->AddSelectedTabWithURL(url, PageTransition::TYPED);
+ browser()->AddSelectedTabWithURL(url, content::PAGE_TRANSITION_TYPED);
// Alternate focus for the tab.
const bool kFocusPage[3][5] = {
@@ -364,7 +364,7 @@
browser()->FocusLocationBar();
// Create a 2nd tab.
- browser()->AddSelectedTabWithURL(url, PageTransition::TYPED);
+ browser()->AddSelectedTabWithURL(url, content::PAGE_TRANSITION_TYPED);
// Focus should be on the recently opened tab page.
ASSERT_TRUE(IsViewFocused(VIEW_ID_TAB_CONTAINER_FOCUS_VIEW));
@@ -836,7 +836,7 @@
// Open about:blank, focus should be on the location bar.
browser()->AddSelectedTabWithURL(GURL(chrome::kAboutBlankURL),
- PageTransition::LINK);
+ content::PAGE_TRANSITION_LINK);
ASSERT_NO_FATAL_FAILURE(ui_test_utils::WaitForLoadStop(
browser()->GetSelectedTabContents()));
EXPECT_TRUE(IsViewFocused(VIEW_ID_LOCATION_BAR));
« no previous file with comments | « chrome/browser/browser_commands_unittest.cc ('k') | chrome/browser/browsing_data_remover_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698