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

Unified Diff: chrome/browser/prefs/browser_prefs.cc

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit comments addressed Created 5 years, 1 month 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/prefs/browser_prefs.cc
diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc
index 32950be71848f27bb52501f4c7c53be507eeec47..e6d2a476d1f58f23063603526a60c450695263da 100644
--- a/chrome/browser/prefs/browser_prefs.cc
+++ b/chrome/browser/prefs/browser_prefs.cc
@@ -224,6 +224,10 @@
#include "chrome/browser/ui/startup/default_browser_prompt.h"
#endif
+#if defined(ENABLE_ARC)
+#include "chrome/browser/ui/app_list/arc_app_list_prefs.h"
+#endif
+
namespace {
#if defined(OS_WIN)
@@ -493,6 +497,10 @@ void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
FlagsUI::RegisterProfilePrefs(registry);
#endif
+#if defined(ENABLE_ARC)
+ ArcAppListPrefs::RegisterProfilePrefs(registry);
+#endif
+
#if defined(OS_WIN)
component_updater::RegisterProfilePrefsForSwReporter(registry);
NetworkProfileBubble::RegisterProfilePrefs(registry);

Powered by Google App Engine
This is Rietveld 408576698