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

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: style fixes. 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 c59ba8fca01067678db1c79dc799ae486bc8fa9e..2e59a8059e39690311e3d674b6a7029f5a40282f 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