| Index: chrome/browser/ui/tab_contents/tab_contents_iterator_unittest.cc | 
| diff --git a/chrome/browser/ui/tab_contents/tab_contents_iterator_unittest.cc b/chrome/browser/ui/tab_contents/tab_contents_iterator_unittest.cc | 
| index 641d22cc21722d0a9ac79327edb75d841189b2e4..51f9d77e40b231845a7bf789060a9645b70aaa93 100644 | 
| --- a/chrome/browser/ui/tab_contents/tab_contents_iterator_unittest.cc | 
| +++ b/chrome/browser/ui/tab_contents/tab_contents_iterator_unittest.cc | 
| @@ -44,13 +44,12 @@ TEST_F(BrowserListTest, TabContentsIteratorVerifyCount) { | 
| EXPECT_EQ(0U, CountAllTabs()); | 
|  | 
| // Create more browsers/windows. | 
| -  Browser::CreateParams native_params(profile(), | 
| -                                      chrome::HOST_DESKTOP_TYPE_NATIVE); | 
| +  Browser::CreateParams native_params(profile()); | 
| scoped_ptr<Browser> browser2( | 
| chrome::CreateBrowserWithTestWindowForParams(&native_params)); | 
| // Create browser 3 and 4 on the Ash desktop (the TabContentsIterator | 
| // shouldn't see the difference). | 
| -  Browser::CreateParams ash_params(profile(), chrome::HOST_DESKTOP_TYPE_ASH); | 
| +  Browser::CreateParams ash_params(profile()); | 
| scoped_ptr<Browser> browser3( | 
| chrome::CreateBrowserWithTestWindowForParams(&ash_params)); | 
| scoped_ptr<Browser> browser4( | 
| @@ -91,13 +90,12 @@ TEST_F(BrowserListTest, TabContentsIteratorVerifyBrowser) { | 
| EXPECT_EQ(1U, BrowserList::GetInstance()->size()); | 
|  | 
| // Create more browsers/windows. | 
| -  Browser::CreateParams native_params(profile(), | 
| -                                      chrome::HOST_DESKTOP_TYPE_NATIVE); | 
| +  Browser::CreateParams native_params(profile()); | 
| scoped_ptr<Browser> browser2( | 
| chrome::CreateBrowserWithTestWindowForParams(&native_params)); | 
| // Create browser 3 on the Ash desktop (the TabContentsIterator shouldn't see | 
| // the difference). | 
| -  Browser::CreateParams ash_params(profile(), chrome::HOST_DESKTOP_TYPE_ASH); | 
| +  Browser::CreateParams ash_params(profile()); | 
| scoped_ptr<Browser> browser3( | 
| chrome::CreateBrowserWithTestWindowForParams(&ash_params)); | 
|  | 
|  |