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

Side by Side Diff: chrome/common/pref_names.cc

Issue 10915140: Add the partial screen magnifier to Chrome OS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix preferences. 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 "settings.language.xkb_auto_repeat_interval_r2"; 687 "settings.language.xkb_auto_repeat_interval_r2";
688 // "_r2" suffixes are added to the three prefs above when we change the 688 // "_r2" suffixes are added to the three prefs above when we change the
689 // preferences not user-configurable, not to sync them with cloud. 689 // preferences not user-configurable, not to sync them with cloud.
690 690
691 // A boolean pref which determines whether spoken feedback is enabled. 691 // A boolean pref which determines whether spoken feedback is enabled.
692 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; 692 const char kSpokenFeedbackEnabled[] = "settings.accessibility";
693 // A boolean pref which determines whether high conrast is enabled. 693 // A boolean pref which determines whether high conrast is enabled.
694 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; 694 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled";
695 // A boolean pref which determines whether screen magnifier is enabled. 695 // A boolean pref which determines whether screen magnifier is enabled.
696 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; 696 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier";
697 // A boolean pref which determines whether the partial magnifier is enabled.
698 const char kPartialScreenMagnifierEnabled[] = "settings.a11y.partial_magnifier";
697 // A boolean pref which determines whether virtual keyboard is enabled. 699 // A boolean pref which determines whether virtual keyboard is enabled.
698 // TODO(hashimoto): Remove this pref. 700 // TODO(hashimoto): Remove this pref.
699 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; 701 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard";
700 702
701 // A boolean pref which turns on Advanced Filesystem 703 // A boolean pref which turns on Advanced Filesystem
702 // (USB support, SD card, etc). 704 // (USB support, SD card, etc).
703 const char kLabsAdvancedFilesystemEnabled[] = 705 const char kLabsAdvancedFilesystemEnabled[] =
704 "settings.labs.advanced_filesystem"; 706 "settings.labs.advanced_filesystem";
705 707
706 // A boolean pref which turns on the mediaplayer. 708 // A boolean pref which turns on the mediaplayer.
(...skipping 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after
2015 2017
2016 // Counts how many more times the 'profile on a network share' warning should be 2018 // Counts how many more times the 'profile on a network share' warning should be
2017 // shown to the user before the next silence period. 2019 // shown to the user before the next silence period.
2018 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
2019 // Tracks the time of the last shown warning. Used to reset 2021 // Tracks the time of the last shown warning. Used to reset
2020 // |network_profile.warnings_left| after a silence period. 2022 // |network_profile.warnings_left| after a silence period.
2021 const char kNetworkProfileLastWarningTime[] = 2023 const char kNetworkProfileLastWarningTime[] =
2022 "network_profile.last_warning_time"; 2024 "network_profile.last_warning_time";
2023 2025
2024 } // namespace prefs 2026 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698