| Index: chrome/browser/extensions/api/tabs/tabs.cc
|
| diff --git a/chrome/browser/extensions/api/tabs/tabs.cc b/chrome/browser/extensions/api/tabs/tabs.cc
|
| index 76e34a9457aa662f87da24916567364207f69aed..f292dda7d5f01cebcc22c7536f0a673662c07971 100644
|
| --- a/chrome/browser/extensions/api/tabs/tabs.cc
|
| +++ b/chrome/browser/extensions/api/tabs/tabs.cc
|
| @@ -577,8 +577,7 @@ bool CreateWindowFunction::RunImpl() {
|
| }
|
|
|
| #if !defined(USE_ASH)
|
| - if (window_type == Browser::TYPE_PANEL &&
|
| - PanelManager::UseBrowserlessPanels()) {
|
| + if (window_type == Browser::TYPE_PANEL) {
|
| std::string title =
|
| web_app::GenerateApplicationNameFromExtensionId(extension_id);
|
| // Note: Panels ignore all but the first url provided.
|
| @@ -596,7 +595,6 @@ bool CreateWindowFunction::RunImpl() {
|
| GetExtension()));
|
| return true;
|
| }
|
| - // else fall through to create BrowserWindow
|
| #endif
|
|
|
| // Create a new BrowserWindow.
|
|
|