| Index: chrome/browser/tabs/tab_strip_model_unittest.cc
|
| diff --git a/chrome/browser/tabs/tab_strip_model_unittest.cc b/chrome/browser/tabs/tab_strip_model_unittest.cc
|
| index bd38b63bd1273fb43c561743add6ee122d817d45..6bb18fd31632697c824d7d301d9de0ec57f8d937 100644
|
| --- a/chrome/browser/tabs/tab_strip_model_unittest.cc
|
| +++ b/chrome/browser/tabs/tab_strip_model_unittest.cc
|
| @@ -155,7 +155,8 @@ class TabStripModelTest : public ChromeRenderViewHostTestHarness {
|
| }
|
|
|
| TabContentsWrapper* CreateTabContents() {
|
| - return Browser::TabContentsFactory(profile(), NULL, 0, NULL, NULL);
|
| + return Browser::TabContentsFactory(
|
| + profile(), NULL, MSG_ROUTING_NONE, NULL, NULL);
|
| }
|
|
|
| TabContentsWrapper* CreateTabContentsWithSharedRPH(
|
| @@ -1454,7 +1455,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, 0, NULL, NULL);
|
| + WebContents::Create(profile(), NULL, MSG_ROUTING_NONE, NULL, NULL);
|
| TabContentsWrapper wrapper(fake_destinations_tab);
|
| TabStripDummyDelegate delegate(&wrapper);
|
| TabStripModel tabstrip(&delegate, profile());
|
|
|