| Index: chrome/browser/ui/webui/web_dialog_web_contents_delegate_unittest.cc
|
| diff --git a/chrome/browser/ui/webui/web_dialog_web_contents_delegate_unittest.cc b/chrome/browser/ui/webui/web_dialog_web_contents_delegate_unittest.cc
|
| index ac28b7dcf3eae6613ffcd5f5a1e8220089e22626..98a87b4b39e3a69b34f2b4028a03c4e17ff799cf 100644
|
| --- a/chrome/browser/ui/webui/web_dialog_web_contents_delegate_unittest.cc
|
| +++ b/chrome/browser/ui/webui/web_dialog_web_contents_delegate_unittest.cc
|
| @@ -66,7 +66,7 @@ TEST_F(WebDialogWebContentsDelegateTest, DoNothingMethodsTest) {
|
| EXPECT_TRUE(test_web_contents_delegate_->IsPopupOrPanel(NULL));
|
| history::HistoryAddPageArgs should_add_args(
|
| GURL(), base::Time::Now(), 0, 0, GURL(), history::RedirectList(),
|
| - content::PAGE_TRANSITION_TYPED, history::SOURCE_SYNCED, false);
|
| + ui::PAGE_TRANSITION_TYPED, history::SOURCE_SYNCED, false);
|
| test_web_contents_delegate_->NavigationStateChanged(
|
| NULL, content::InvalidateTypes(0));
|
| test_web_contents_delegate_->ActivateContents(NULL);
|
| @@ -84,7 +84,7 @@ TEST_F(WebDialogWebContentsDelegateTest, OpenURLFromTabTest) {
|
| OpenURLParams(GURL(url::kAboutBlankURL),
|
| Referrer(),
|
| NEW_FOREGROUND_TAB,
|
| - content::PAGE_TRANSITION_LINK,
|
| + ui::PAGE_TRANSITION_LINK,
|
| false));
|
| // This should create a new foreground tab in the existing browser.
|
| EXPECT_EQ(1, browser()->tab_strip_model()->count());
|
| @@ -111,7 +111,7 @@ TEST_F(WebDialogWebContentsDelegateTest, DetachTest) {
|
| OpenURLParams(GURL(url::kAboutBlankURL),
|
| Referrer(),
|
| NEW_FOREGROUND_TAB,
|
| - content::PAGE_TRANSITION_LINK,
|
| + ui::PAGE_TRANSITION_LINK,
|
| false));
|
| test_web_contents_delegate_->AddNewContents(NULL, NULL, NEW_FOREGROUND_TAB,
|
| gfx::Rect(), false, NULL);
|
|
|