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

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: Attempt # 2 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 916 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 // Boolean controlling whether history saving is disabled. 927 // Boolean controlling whether history saving is disabled.
928 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; 928 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled";
929 929
930 // Boolean controlling whether deleting browsing and download history is 930 // Boolean controlling whether deleting browsing and download history is
931 // permitted. 931 // permitted.
932 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; 932 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled";
933 933
934 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. 934 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches.
935 const char kForceSafeSearch[] = "settings.force_safesearch"; 935 const char kForceSafeSearch[] = "settings.force_safesearch";
936 936
937 const char kVirtualKeyboardEnabled[] = "ui.virtual_keyboard_enabled";
bartfab (slow) 2014/06/13 12:15:53 1: Given that we have two different VKs, the pref
rsadam 2014/06/13 15:28:46 Done.
938
937 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 939 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
938 // Linux specific preference on whether we should match the system theme. 940 // Linux specific preference on whether we should match the system theme.
939 const char kUsesSystemTheme[] = "extensions.theme.use_system"; 941 const char kUsesSystemTheme[] = "extensions.theme.use_system";
940 #endif 942 #endif
941 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; 943 const char kCurrentThemePackFilename[] = "extensions.theme.pack";
942 const char kCurrentThemeID[] = "extensions.theme.id"; 944 const char kCurrentThemeID[] = "extensions.theme.id";
943 const char kCurrentThemeImages[] = "extensions.theme.images"; 945 const char kCurrentThemeImages[] = "extensions.theme.images";
944 const char kCurrentThemeColors[] = "extensions.theme.colors"; 946 const char kCurrentThemeColors[] = "extensions.theme.colors";
945 const char kCurrentThemeTints[] = "extensions.theme.tints"; 947 const char kCurrentThemeTints[] = "extensions.theme.tints";
946 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; 948 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties";
(...skipping 1466 matching lines...) Expand 10 before | Expand all | Expand 10 after
2413 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2415 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2414 // given by the PartnerBookmarksProvider and either the user-visible renamed 2416 // given by the PartnerBookmarksProvider and either the user-visible renamed
2415 // title or an empty string if the bookmark node was removed. 2417 // title or an empty string if the bookmark node was removed.
2416 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2418 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2417 #endif 2419 #endif
2418 2420
2419 // Whether DNS Quick Check is disabled in proxy resolution. 2421 // Whether DNS Quick Check is disabled in proxy resolution.
2420 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2422 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2421 2423
2422 } // namespace prefs 2424 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698