| 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 767db59cbfe7ee0676fe17e25fedbfbc75eae348..811239a38f7ec274aba48ec681d88a16393862e9 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
|
| @@ -79,7 +79,7 @@ TEST_F(WebDialogWebContentsDelegateTest, DoNothingMethodsTest) {
|
|
|
| TEST_F(WebDialogWebContentsDelegateTest, OpenURLFromTabTest) {
|
| test_web_contents_delegate_->OpenURLFromTab(
|
| - NULL, OpenURLParams(GURL(content::kAboutBlankURL), Referrer(),
|
| + NULL, OpenURLParams(GURL(url::kAboutBlankURL), Referrer(),
|
| NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_LINK, false));
|
| // This should create a new foreground tab in the existing browser.
|
| EXPECT_EQ(1, browser()->tab_strip_model()->count());
|
| @@ -102,7 +102,7 @@ TEST_F(WebDialogWebContentsDelegateTest, DetachTest) {
|
| EXPECT_EQ(NULL, test_web_contents_delegate_->browser_context());
|
| // Now, none of the following calls should do anything.
|
| test_web_contents_delegate_->OpenURLFromTab(
|
| - NULL, OpenURLParams(GURL(content::kAboutBlankURL), Referrer(),
|
| + NULL, OpenURLParams(GURL(url::kAboutBlankURL), Referrer(),
|
| NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_LINK, false));
|
| test_web_contents_delegate_->AddNewContents(NULL, NULL, NEW_FOREGROUND_TAB,
|
| gfx::Rect(), false, NULL);
|
|
|