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

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

Issue 2349073002: Blimp Settings framework on the c++ side (Closed)
Patch Set: nits and sync to head Created 4 years, 2 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
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/prefs/chrome_command_line_pref_store.cc
diff --git a/chrome/browser/prefs/chrome_command_line_pref_store.cc b/chrome/browser/prefs/chrome_command_line_pref_store.cc
index 349e18630b1bf02f7ec592995beaa4ec96745db5..bd91955c25a536f3c72b1e1ae897da0128dd1382 100644
--- a/chrome/browser/prefs/chrome_command_line_pref_store.cc
+++ b/chrome/browser/prefs/chrome_command_line_pref_store.cc
@@ -30,6 +30,10 @@
#include "ui/base/ui_base_switches.h"
#include "ui/display/display_switches.h"
+#if defined(OS_ANDROID)
+#include "chrome/browser/android/preferences/command_line_pref_store_android.h"
+#endif
+
#if defined(OS_CHROMEOS)
#include "chromeos/chromeos_switches.h"
#endif
@@ -114,6 +118,9 @@ void ChromeCommandLinePrefStore::ApplySimpleSwitches() {
ApplyPathSwitches(path_switch_map_, arraysize(path_switch_map_));
ApplyIntegerSwitches(integer_switch_map_, arraysize(integer_switch_map_));
ApplyBooleanSwitches(boolean_switch_map_, arraysize(boolean_switch_map_));
+#if defined(OS_ANDROID)
+ ::android::ApplyBlimpSwitches(this);
+#endif
}
void ChromeCommandLinePrefStore::ApplyProxyMode() {
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698