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

Unified Diff: chrome/test/base/in_process_browser_test.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/test/base/in_process_browser_test.h ('k') | chrome/test/base/test_location_bar.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/in_process_browser_test.cc
===================================================================
--- chrome/test/base/in_process_browser_test.cc (revision 105162)
+++ chrome/test/base/in_process_browser_test.cc (working copy)
@@ -188,7 +188,7 @@
Browser* browser,
int index,
const GURL& url,
- PageTransition::Type transition) {
+ content::PageTransition transition) {
browser::NavigateParams params(browser, url, transition);
params.tabstrip_index = index;
params.disposition = NEW_FOREGROUND_TAB;
@@ -198,7 +198,7 @@
void InProcessBrowserTest::AddTabAtIndex(
int index,
const GURL& url,
- PageTransition::Type transition) {
+ content::PageTransition transition) {
AddTabAtIndexToBrowser(browser(), index, url, transition);
}
@@ -233,7 +233,7 @@
content::NOTIFICATION_LOAD_STOP,
NotificationService::AllSources());
browser->AddSelectedTabWithURL(
- GURL(chrome::kAboutBlankURL), PageTransition::START_PAGE);
+ GURL(chrome::kAboutBlankURL), content::PAGE_TRANSITION_START_PAGE);
observer.Wait();
browser->window()->Show();
« no previous file with comments | « chrome/test/base/in_process_browser_test.h ('k') | chrome/test/base/test_location_bar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698