| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index cd487862f4c596f7cf724dcea2860ef8fa3ff2a3..afae4d8b88a57f06b4e58c063d6f2362bb89d59b 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -119,6 +119,10 @@
|
| #include "chrome/browser/chrome_browser_main_extra_parts_aura.h"
|
| #endif
|
|
|
| +#if defined(USE_ASH)
|
| +#include "chrome/browser/chrome_browser_main_extra_parts_ash.h"
|
| +#endif
|
| +
|
| #if defined(OS_LINUX) || defined(OS_OPENBSD)
|
| #include "base/linux_util.h"
|
| #include "chrome/browser/crash_handler_host_linux.h"
|
| @@ -339,6 +343,10 @@ content::BrowserMainParts* ChromeContentBrowserClient::CreateBrowserMainParts(
|
| main_parts->AddParts(new ChromeBrowserMainExtraPartsAura());
|
| #endif
|
|
|
| +#if defined(USE_ASH)
|
| + main_parts->AddParts(new ChromeBrowserMainExtraPartsAsh());
|
| +#endif
|
| +
|
| return main_parts;
|
| }
|
|
|
|
|