Index: chrome/browser/extensions/extension_tabs_module.cc |
diff --git a/chrome/browser/extensions/extension_tabs_module.cc b/chrome/browser/extensions/extension_tabs_module.cc |
index a2c9b46a431ab8b1ff6259e457d84f0010502669..108410d5f6dc46a5a1d48b7122f77d7684b14b74 100644 |
--- a/chrome/browser/extensions/extension_tabs_module.cc |
+++ b/chrome/browser/extensions/extension_tabs_module.cc |
@@ -537,17 +537,6 @@ bool CreateWindowFunction::RunImpl() { |
window_type = Browser::TYPE_PANEL; |
else |
window_type = Browser::TYPE_POPUP; |
- } else if (type_str == keys::kWindowTypeValueShell && |
- GetExtension()->is_platform_app()) { |
- GURL window_url = urls.empty() ? GURL(chrome::kAboutBlankURL) : urls[0]; |
- ShellWindow::CreateParams params; |
- params.bounds = window_bounds; |
- ShellWindow* shell_window = ShellWindow::Create( |
- window_profile, GetExtension(), window_url, params); |
- shell_window->Show(); |
- result_.reset(shell_window->extension_window_controller()-> |
- CreateWindowValueWithTabs()); |
- return true; |
} else if (type_str != keys::kWindowTypeValueNormal) { |
error_ = keys::kInvalidWindowTypeError; |
return false; |