| Index: chrome/browser/ui/browser.cc | 
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc | 
| index 114ed52b73fbc88efb567252f53daaf0a588b563..f59b97cc8dbaa225f8db16de2f30177b773bc233 100644 | 
| --- a/chrome/browser/ui/browser.cc | 
| +++ b/chrome/browser/ui/browser.cc | 
| @@ -2305,9 +2305,11 @@ bool Browser::ShouldShowLocationBar() const { | 
|  | 
| if (is_app()) { | 
| if (CommandLine::ForCurrentProcess()->HasSwitch( | 
| -            switches::kEnableStreamlinedHostedApps)) { | 
| +            switches::kEnableStreamlinedHostedApps) && | 
| +        host_desktop_type() != chrome::HOST_DESKTOP_TYPE_ASH) { | 
| // If kEnableStreamlinedHostedApps is true, show the location bar for | 
| -      // bookmark apps. | 
| +      // bookmark apps, except on ash which has the toolbar merged into the | 
| +      // frame. | 
| ExtensionService* service = | 
| extensions::ExtensionSystem::Get(profile_)->extension_service(); | 
| const extensions::Extension* extension = | 
|  |