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

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

Issue 320223002: Add device policy: Kiosk Virtual Keyboard Layout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo. Created 6 years, 6 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 | Annotate | Revision Log
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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 // OOBE screen. 871 // OOBE screen.
872 const char kTimeOnOobe[] = "settings.time_on_oobe"; 872 const char kTimeOnOobe[] = "settings.time_on_oobe";
873 873
874 // The app/extension name who sets the current wallpaper. If current wallpaper 874 // The app/extension name who sets the current wallpaper. If current wallpaper
875 // is set by the component wallpaper picker, it is set to an empty string. 875 // is set by the component wallpaper picker, it is set to an empty string.
876 const char kCurrentWallpaperAppName[] = "wallpaper.app.name"; 876 const char kCurrentWallpaperAppName[] = "wallpaper.app.name";
877 877
878 // List of mounted file systems via the File System Provider API. Used to 878 // List of mounted file systems via the File System Provider API. Used to
879 // restore them after a reboot. 879 // restore them after a reboot.
880 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; 880 const char kFileSystemProviderMounted[] = "file_system_provider.mounted";
881
882 // A boolean pref set to true if the virtual keyboard should be enabled.
883 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled";
884
881 #endif // defined(OS_CHROMEOS) 885 #endif // defined(OS_CHROMEOS)
882 886
883 // The disabled messages in IPC logging. 887 // The disabled messages in IPC logging.
884 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; 888 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages";
885 889
886 // A boolean pref set to true if a Home button to open the Home pages should be 890 // A boolean pref set to true if a Home button to open the Home pages should be
887 // visible on the toolbar. 891 // visible on the toolbar.
888 const char kShowHomeButton[] = "browser.show_home_button"; 892 const char kShowHomeButton[] = "browser.show_home_button";
889 893
890 // A string value which saves short list of recently user selected encodings 894 // A string value which saves short list of recently user selected encodings
(...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
2413 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2417 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2414 // given by the PartnerBookmarksProvider and either the user-visible renamed 2418 // given by the PartnerBookmarksProvider and either the user-visible renamed
2415 // title or an empty string if the bookmark node was removed. 2419 // title or an empty string if the bookmark node was removed.
2416 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2420 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2417 #endif 2421 #endif
2418 2422
2419 // Whether DNS Quick Check is disabled in proxy resolution. 2423 // Whether DNS Quick Check is disabled in proxy resolution.
2420 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2424 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2421 2425
2422 } // namespace prefs 2426 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698