| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 8d3dea9fe931ab20e5d2bb50f5dd2003eaea8acc..6c970ede7b6fc2c9b444ee75b48bd58c5360ea8a 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -465,7 +465,11 @@ Browser* Browser::CreateForApp(Type type,
|
|
|
| // static
|
| Browser* Browser::CreateForDevTools(Profile* profile) {
|
| +#if defined(OS_CHROMEOS)
|
| + CreateParams params(TYPE_TABBED, profile);
|
| +#else
|
| CreateParams params(TYPE_POPUP, profile);
|
| +#endif
|
| params.app_name = DevToolsWindow::kDevToolsApp;
|
| return CreateWithParams(params);
|
| }
|
|
|