Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1478)

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 9701002: Aura/ash split: Split the extra parts into ash and aura parts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 e0adfabf1cafca8d74135e358528a1e197887cc1..b2adfa81b28833c41422e5c323e2404b081631cf 100644
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -118,6 +118,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"
@@ -347,6 +351,10 @@ content::BrowserMainParts* ChromeContentBrowserClient::CreateBrowserMainParts(
main_parts->AddParts(new ChromeBrowserMainExtraPartsAura());
#endif
+#if defined(USE_ASH)
+ main_parts->AddParts(new ChromeBrowserMainExtraPartsAsh());
+#endif
+
return main_parts;
}

Powered by Google App Engine
This is Rietveld 408576698