| Index: chrome/browser/ui/cocoa/applescript/window_applescript.mm
|
| diff --git a/chrome/browser/ui/cocoa/applescript/window_applescript.mm b/chrome/browser/ui/cocoa/applescript/window_applescript.mm
|
| index ba9325207daa45d833c4984bc1b8dfc507dc618e..e86db50fe4facc1446032ff6d49c4698429e628f 100644
|
| --- a/chrome/browser/ui/cocoa/applescript/window_applescript.mm
|
| +++ b/chrome/browser/ui/cocoa/applescript/window_applescript.mm
|
| @@ -179,7 +179,7 @@
|
| content::WebContents* contents = chrome::AddSelectedTabWithURL(
|
| browser_,
|
| GURL(chrome::kChromeUINewTabURL),
|
| - content::PAGE_TRANSITION_TYPED);
|
| + ui::PAGE_TRANSITION_TYPED);
|
| CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(contents);
|
| core_tab_helper->set_new_tab_start_time(newTabStartTime);
|
| [aTab setWebContents:contents];
|
| @@ -194,7 +194,7 @@
|
| // Set how long it takes a tab to be created.
|
| base::TimeTicks newTabStartTime = base::TimeTicks::Now();
|
| chrome::NavigateParams params(browser_, GURL(chrome::kChromeUINewTabURL),
|
| - content::PAGE_TRANSITION_TYPED);
|
| + ui::PAGE_TRANSITION_TYPED);
|
| params.disposition = NEW_FOREGROUND_TAB;
|
| params.tabstrip_index = index;
|
| chrome::Navigate(¶ms);
|
|
|