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

Unified Diff: chrome/browser/ui/tabs/tab_strip_model_unittest.cc

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
« no previous file with comments | « chrome/browser/ui/tabs/tab_strip_model.cc ('k') | chrome/browser/ui/views/ash/panel_view_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/tabs/tab_strip_model_unittest.cc
diff --git a/chrome/browser/ui/tabs/tab_strip_model_unittest.cc b/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
index 018a1c9368aa140937b5d2c69c1d2acfb238aa97..0c38f9fef633e3023c0cb2a5f3be603cdd7e326e 100644
--- a/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
+++ b/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
@@ -123,15 +123,14 @@ class TabStripModelTest : public ChromeRenderViewHostTestHarness {
}
TabContents* CreateTabContents() {
- return chrome::TabContentsFactory(
- profile(), NULL, MSG_ROUTING_NONE, NULL, NULL);
+ return chrome::TabContentsFactory(profile(), NULL, MSG_ROUTING_NONE, NULL);
}
TabContents* CreateTabContentsWithSharedRPH(
WebContents* web_contents) {
TabContents* retval = chrome::TabContentsFactory(profile(),
web_contents->GetRenderViewHost()->GetSiteInstance(), MSG_ROUTING_NONE,
- NULL, NULL);
+ NULL);
EXPECT_EQ(retval->web_contents()->GetRenderProcessHost(),
web_contents->GetRenderProcessHost());
return retval;
@@ -1451,7 +1450,7 @@ TEST_F(TabStripModelTest, AddTabContents_ForgetOpeners) {
// Added for http://b/issue?id=958960
TEST_F(TabStripModelTest, AppendContentsReselectionTest) {
WebContents* fake_destinations_tab =
- WebContents::Create(profile(), NULL, MSG_ROUTING_NONE, NULL, NULL);
+ WebContents::Create(profile(), NULL, MSG_ROUTING_NONE, NULL);
TabContents tab_contents(fake_destinations_tab);
TabStripDummyDelegate delegate(&tab_contents);
TabStripModel tabstrip(&delegate, profile());
« no previous file with comments | « chrome/browser/ui/tabs/tab_strip_model.cc ('k') | chrome/browser/ui/views/ash/panel_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698