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

Unified Diff: chrome/browser/ui/cocoa/infobars/infobar_controller_unittest.mm

Issue 10831116: Move SessionStorageNamespace entirely into NavigationController and support StoragePartitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merged ToT Created 8 years, 4 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
Index: chrome/browser/ui/cocoa/infobars/infobar_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/infobars/infobar_controller_unittest.mm b/chrome/browser/ui/cocoa/infobars/infobar_controller_unittest.mm
index 4c5945c29540291ec763aab2ff4af03e2f90234d..c95bee86a6355970a362957719222ace48db9e67 100644
--- a/chrome/browser/ui/cocoa/infobars/infobar_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/infobars/infobar_controller_unittest.mm
@@ -101,7 +101,7 @@ class LinkInfoBarControllerTest : public CocoaProfileTest,
virtual void SetUp() {
CocoaProfileTest::SetUp();
tab_contents_.reset(new TabContents(WebContents::Create(
- profile(), NULL, MSG_ROUTING_NONE, NULL, NULL)));
+ profile(), NULL, MSG_ROUTING_NONE, NULL)));
tab_contents_->infobar_tab_helper()->set_infobars_enabled(false);
delegate_ = new MockLinkInfoBarDelegate(this);
@@ -145,7 +145,7 @@ class ConfirmInfoBarControllerTest : public CocoaProfileTest,
virtual void SetUp() {
CocoaProfileTest::SetUp();
tab_contents_.reset(new TabContents(WebContents::Create(
- profile(), NULL, MSG_ROUTING_NONE, NULL, NULL)));
+ profile(), NULL, MSG_ROUTING_NONE, NULL)));
tab_contents_->infobar_tab_helper()->set_infobars_enabled(false);
delegate_ = new MockConfirmInfoBarDelegate(this);

Powered by Google App Engine
This is Rietveld 408576698