| Index: chrome/browser/extensions/extension_prefs.cc
 | 
| diff --git a/chrome/browser/extensions/extension_prefs.cc b/chrome/browser/extensions/extension_prefs.cc
 | 
| index 2c5dc80dedba1f11412b7935529e3c7af619c25d..494d5497629e20b13af577d106daad809e1b6132 100644
 | 
| --- a/chrome/browser/extensions/extension_prefs.cc
 | 
| +++ b/chrome/browser/extensions/extension_prefs.cc
 | 
| @@ -985,12 +985,10 @@ extension_misc::LaunchContainer ExtensionPrefs::GetLaunchContainer(
 | 
|  
 | 
|    extension_misc::LaunchContainer result = kInvalidLaunchContainer;
 | 
|  
 | 
| -  if (manifest_launch_container == extension_misc::LAUNCH_PANEL ||
 | 
| -      manifest_launch_container == extension_misc::LAUNCH_SHELL) {
 | 
| -    // Apps with app.launch.container = 'panel' or 'shell' should always respect
 | 
| -    // the manifest setting.
 | 
| +  if (manifest_launch_container == extension_misc::LAUNCH_PANEL) {
 | 
| +    // Apps with app.launch.container = 'panel' should always respect the
 | 
| +    // manifest setting.
 | 
|      result = manifest_launch_container;
 | 
| -
 | 
|    } else if (manifest_launch_container == extension_misc::LAUNCH_TAB) {
 | 
|      // Look for prefs that indicate the user's choice of launch
 | 
|      // container.  The app's menu on the NTP provides a UI to set
 | 
| 
 |