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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.cc

Issue 10915140: Add the partial screen magnifier to Chrome OS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Code review fixes Created 8 years, 3 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/chromeos/login/wizard_controller.cc
diff --git a/chrome/browser/chromeos/login/wizard_controller.cc b/chrome/browser/chromeos/login/wizard_controller.cc
index 53a9b0007fac28bb82fc4568c226ff920017e844..2adeb53c803f1fc02d558559f08035b151dbe683 100644
--- a/chrome/browser/chromeos/login/wizard_controller.cc
+++ b/chrome/browser/chromeos/login/wizard_controller.cc
@@ -397,6 +397,12 @@ void WizardController::RegisterPrefs(PrefService* local_state) {
false,
PrefService::UNSYNCABLE_PREF);
}
+ if (local_state->FindPreference(
+ prefs::kPartialScreenMagnifierEnabled) == NULL) {
+ local_state->RegisterBooleanPref(prefs::kPartialScreenMagnifierEnabled,
+ false,
+ PrefService::UNSYNCABLE_PREF);
+ }
if (local_state->FindPreference(prefs::kVirtualKeyboardEnabled) == NULL) {
local_state->RegisterBooleanPref(prefs::kVirtualKeyboardEnabled,
false,

Powered by Google App Engine
This is Rietveld 408576698