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

Unified Diff: chrome/browser/ui/cocoa/tabs/tab_strip_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/tabs/tab_strip_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_controller_unittest.mm b/chrome/browser/ui/cocoa/tabs/tab_strip_controller_unittest.mm
index fe9ca05d54ec823e9c27ecc3800fa7b449ce1e19..ec853f5f539c06be8680b2fcad78240cb6072ed6 100644
--- a/chrome/browser/ui/cocoa/tabs/tab_strip_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/tabs/tab_strip_controller_unittest.mm
@@ -119,7 +119,7 @@ TEST_F(TabStripControllerTest, AddRemoveTabs) {
EXPECT_TRUE(model_->empty());
SiteInstance* instance = SiteInstance::Create(profile());
TabContents* tab_contents = chrome::TabContentsFactory(
- profile(), instance, MSG_ROUTING_NONE, NULL, NULL);
+ profile(), instance, MSG_ROUTING_NONE, NULL);
model_->AppendTabContents(tab_contents, true);
EXPECT_EQ(model_->count(), 1);
}
@@ -136,13 +136,13 @@ TEST_F(TabStripControllerTest, CorrectToolTipText) {
// Create tab 1.
SiteInstance* instance = SiteInstance::Create(profile());
TabContents* tab_contents = chrome::TabContentsFactory(
- profile(), instance, MSG_ROUTING_NONE, NULL, NULL);
+ profile(), instance, MSG_ROUTING_NONE, NULL);
model_->AppendTabContents(tab_contents, true);
// Create tab 2.
SiteInstance* instance2 = SiteInstance::Create(profile());
TabContents* tab_contents2 = chrome::TabContentsFactory(
- profile(), instance2, MSG_ROUTING_NONE, NULL, NULL);
+ profile(), instance2, MSG_ROUTING_NONE, NULL);
model_->AppendTabContents(tab_contents2, true);
// Set tab 1 tooltip.
« no previous file with comments | « chrome/browser/ui/cocoa/tabpose_window_unittest.mm ('k') | chrome/browser/ui/cocoa/web_dialog_window_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698