pref_names.cc revision 6e8cce623b6e4fe0c9e4af605d675dd9d0338c38
15821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Copyright (c) 2012 The Chromium Authors. All rights reserved.
25821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
35821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// found in the LICENSE file.
45821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
55821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "chrome/common/pref_names.h"
65821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
75821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "base/basictypes.h"
82a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "chrome/common/pref_font_webkit_names.h"
95821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)namespace prefs {
115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// *************** PROFILE PREFS ***************
135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// These are attached to the user profile
145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string property indicating whether default apps should be installed
165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// in this profile.  Use the value "install" to enable defaults apps, or
175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// "noinstall" to disable them.  This property is usually set in the
185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// master_preferences and copied into the profile preferences on first run.
195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Defaults apps are installed only when creating a new profile.
205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultApps[] = "default_apps";
215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether we have installed default apps yet in this profile.
235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultAppsInstalled[] = "default_apps_installed";
245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Disables screenshot accelerators and extension APIs.
262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// This setting resides both in profile prefs and local state. Accelerator
272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// handling code reads local state, while extension APIs use profile pref.
282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kDisableScreenshots[] = "disable_screenshots";
292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
30116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// If set to true profiles are created in ephemeral mode and do not store their
31116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// data in the profile folder on disk but only in memory.
32116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kForceEphemeralProfiles[] = "profile.ephemeral_mode";
33116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean specifying whether the New Tab page is the home page or not.
355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kHomePageIsNewTabPage[] = "homepage_is_newtabpage";
365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// This is the URL of the page to load when opening new tabs.
385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kHomePage[] = "homepage";
395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
40ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// An integer that keeps track of the profile icon version. This allows us to
41ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// determine the state of the profile icon for icon format changes.
42ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdochconst char kProfileIconVersion[] = "profile.icon_version";
43ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch
445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Used to determine if the last session exited cleanly. Set to false when
455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// first opened, and to true when closing. On startup if the value is false,
465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// it means the profile didn't exit cleanly.
475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// DEPRECATED: this is replaced by kSessionExitType and exists for backwards
48cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// compatibility.
495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSessionExitedCleanly[] = "profile.exited_cleanly";
505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref whose values is one of the values defined by
525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// |ProfileImpl::kPrefExitTypeXXX|. Set to |kPrefExitTypeCrashed| on startup and
535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// one of |kPrefExitTypeNormal| or |kPrefExitTypeSessionEnded| during
545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// shutdown. Used to determine the exit type the last time the profile was open.
555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSessionExitType[] = "profile.exit_type";
565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An integer pref. Holds one of several values:
585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 0: (deprecated) open the homepage on startup.
595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 1: restore the last session.
605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 2: this was used to indicate a specific session should be restored. It is
615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//    no longer used, but saved to avoid conflict with old preferences.
625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 3: unused, previously indicated the user wants to restore a saved session.
635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 4: restore the URLs defined in kURLsToRestoreOnStartup.
645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 5: open the New Tab Page on startup.
655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRestoreOnStartup[] = "session.restore_on_startup";
665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A preference to keep track of whether we have already checked whether we
685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// need to migrate the user from kRestoreOnStartup=0 to kRestoreOnStartup=4.
695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// We only need to do this check once, on upgrade from m18 or lower to m19 or
705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// higher.
715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRestoreOnStartupMigrated[] = "session.restore_on_startup_migrated";
725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
73116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Serialized migration time of kURLsToRestoreOnStartup (see
74116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// base::Time::ToInternalValue for details on serialization format).
75116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kRestoreStartupURLsMigrationTime[] =
76116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch    "session.startup_urls_migration_time";
77116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
78ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// The URLs to restore on startup or when the home button is pressed. The URLs
79ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// are only restored on startup if kRestoreOnStartup is 4.
808bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)const char kURLsToRestoreOnStartup[] = "session.startup_urls";
818bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)
828bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// Old startup url pref name for kURLsToRestoreOnStartup.
838bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)const char kURLsToRestoreOnStartupOld[] = "session.urls_to_restore_on_startup";
848bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)
85116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Stores the email address associated with the google account of the custodian
86116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// of the supervised user, set when the supervised user is created.
87116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kSupervisedUserCustodianEmail[] = "profile.managed.custodian_email";
88116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
89116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Stores the display name associated with the google account of the custodian
90116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// of the supervised user, updated (if possible) each time the supervised user
91116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// starts a session.
92116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kSupervisedUserCustodianName[] = "profile.managed.custodian_name";
93116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
946e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Stores the URL of the profile image associated with the google account of the
956e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// custodian of the supervised user.
966e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserCustodianProfileImageURL[] =
976e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    "profile.managed.custodian_profile_image_url";
986e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
996e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Stores the URL of the profile associated with the google account of the
1006e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// custodian of the supervised user.
1016e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserCustodianProfileURL[] =
1026e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    "profile.managed.custodian_profile_url";
1036e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
1046e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Maps host names to whether the host is manually allowed or blocked.
1056e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserManualHosts[] = "profile.managed.manual_hosts";
1066e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
1076e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Maps URLs to whether the URL is manually allowed or blocked.
1086e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserManualURLs[] = "profile.managed.manual_urls";
1096e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
1106e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Stores the email address associated with the google account of the secondary
1116e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// custodian of the supervised user, set when the supervised user is created.
1126e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserSecondCustodianEmail[] =
1136e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    "profile.managed.second_custodian_email";
1146e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
1156e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Stores the display name associated with the google account of the secondary
1166e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// custodian of the supervised user, updated (if possible) each time the
1176e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// supervised user starts a session.
1186e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserSecondCustodianName[] =
1196e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    "profile.managed.second_custodian_name";
1206e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
1216e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Stores the URL of the profile image associated with the google account of the
1226e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// secondary custodian of the supervised user.
1236e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserSecondCustodianProfileImageURL[] =
1246e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    "profile.managed.second_custodian_profile_image_url";
1256e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
1266e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Stores the URL of the profile associated with the google account of the
1276e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// secondary custodian of the supervised user.
1286e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kSupervisedUserSecondCustodianProfileURL[] =
1296e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    "profile.managed.second_custodian_profile_url";
1306e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
131116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Stores settings that can be modified both by a supervised user and their
132116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// manager. See SupervisedUserSharedSettingsService for a description of
133116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// the format.
134116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings";
1354e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
1365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The application locale.
1375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// For OS_CHROMEOS we maintain kApplicationLocale property in both local state
1385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// and user's profile.  Global property determines locale of login screen,
1395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// while user's profile determines his personal locale preference.
1405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kApplicationLocale[] = "intl.app_locale";
1415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_CHROMEOS)
1425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Locale preference of device' owner.  ChromeOS device appears in this locale
1435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// after startup/wakeup/signout.
1445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kOwnerLocale[] = "intl.owner_locale";
1455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Locale accepted by user.  Non-syncable.
1465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Used to determine whether we need to show Locale Change notification.
1475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kApplicationLocaleAccepted[] = "intl.app_locale_accepted";
1485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Non-syncable item.
1495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// It is used in two distinct ways.
1505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// (1) Used for two-step initialization of locale in ChromeOS
1515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//     because synchronization of kApplicationLocale is not instant.
1525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// (2) Used to detect locale change.  Locale change is detected by
1535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//     LocaleChangeGuard in case values of kApplicationLocaleBackup and
1545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//     kApplicationLocale are both non-empty and differ.
1555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Following is a table showing how state of those prefs may change upon
1565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// common real-life use cases:
1575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//                                  AppLocale Backup Accepted
1585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Initial login                       -        A       -
1595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Sync                                B        A       -
1605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Accept (B)                          B        B       B
1615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// -----------------------------------------------------------
1625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Initial login                       -        A       -
1635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// No sync and second login            A        A       -
1645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Change options                      B        B       -
1655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// -----------------------------------------------------------
1665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Initial login                       -        A       -
1675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Sync                                A        A       -
1685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Locale changed on login screen      A        C       -
1695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Accept (A)                          A        A       A
1705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// -----------------------------------------------------------
1715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Initial login                       -        A       -
1725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Sync                                B        A       -
1735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Revert                              A        A       -
1745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kApplicationLocaleBackup[] = "intl.app_locale_backup";
1755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
1765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The default character encoding to assume for a web page in the
1785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// absence of MIME charset specification
1795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultCharset[] = "intl.charset_default";
1805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The value to use for Accept-Languages HTTP header when making an HTTP
1825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// request.
1835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAcceptLanguages[] = "intl.accept_languages";
1845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The value to use for showing locale-dependent encoding list for different
1865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// locale, it's initialized from the corresponding string resource that is
1875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// stored in non-translatable part of the resource bundle.
1885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStaticEncodings[] = "intl.static_encodings";
1895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// If these change, the corresponding enums in the extension API
1915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// experimental.fontSettings.json must also change.
1925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char* const kWebKitScriptsForFontFamilyMaps[] = {
1932a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#define EXPAND_SCRIPT_FONT(x, script_name) script_name ,
1942a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "chrome/common/pref_font_script_names-inl.h"
1952a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)ALL_FONT_SCRIPTS("unused param")
1962a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#undef EXPAND_SCRIPT_FONT
1975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)};
1985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const size_t kWebKitScriptsForFontFamilyMapsLength =
2005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    arraysize(kWebKitScriptsForFontFamilyMaps);
2015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Strings for WebKit font family preferences. If these change, the pref prefix
2035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// in pref_names_util.cc and the pref format in font_settings_api.cc must also
2045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// change.
2055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilyMap[] =
2062a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WEBKIT_WEBPREFS_FONTS_STANDARD;
2075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilyMap[] =
2082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WEBKIT_WEBPREFS_FONTS_FIXED;
2095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilyMap[] =
2102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WEBKIT_WEBPREFS_FONTS_SERIF;
2115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilyMap[] =
2122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WEBKIT_WEBPREFS_FONTS_SANSERIF;
2135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitCursiveFontFamilyMap[] =
2142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WEBKIT_WEBPREFS_FONTS_CURSIVE;
2155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFantasyFontFamilyMap[] =
2162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WEBKIT_WEBPREFS_FONTS_FANTASY;
2175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitPictographFontFamilyMap[] =
2182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WEBKIT_WEBPREFS_FONTS_PICTOGRAPH;
2195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilyArabic[] =
2205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.standard.Arab";
2215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilyArabic[] =
2225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.fixed.Arab";
2235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilyArabic[] =
2245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.serif.Arab";
2255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilyArabic[] =
2265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Arab";
2275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilyCyrillic[] =
2285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.standard.Cyrl";
2295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilyCyrillic[] =
2305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.fixed.Cyrl";
2315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilyCyrillic[] =
2325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.serif.Cyrl";
2335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilyCyrillic[] =
2345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Cyrl";
2355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilyGreek[] =
2365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.standard.Grek";
2375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilyGreek[] =
2385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.fixed.Grek";
2395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilyGreek[] =
2405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.serif.Grek";
2415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilyGreek[] =
2425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Grek";
2435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilyJapanese[] =
2445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.standard.Jpan";
2455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilyJapanese[] =
2465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.fixed.Jpan";
2475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilyJapanese[] =
2485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.serif.Jpan";
2495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilyJapanese[] =
2505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Jpan";
2515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilyKorean[] =
2525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.standard.Hang";
2535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilyKorean[] =
2545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.fixed.Hang";
2555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilyKorean[] =
2565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.serif.Hang";
2575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilyKorean[] =
2585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Hang";
2595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitCursiveFontFamilyKorean[] =
2605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.cursive.Hang";
2615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilySimplifiedHan[] =
2625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.standard.Hans";
2635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilySimplifiedHan[] =
2645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.fixed.Hans";
2655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilySimplifiedHan[] =
2665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.serif.Hans";
2675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilySimplifiedHan[] =
2685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Hans";
2695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamilyTraditionalHan[] =
2705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.standard.Hant";
2715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamilyTraditionalHan[] =
2725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.fixed.Hant";
2735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamilyTraditionalHan[] =
2745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.serif.Hant";
2755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamilyTraditionalHan[] =
2765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Hant";
2775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// WebKit preferences.
2795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled";
2805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled";
2815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitShrinksStandaloneImagesToFit[] =
2825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.shrinks_standalone_images_to_fit";
2835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitInspectorSettings[] = "webkit.webprefs.inspector_settings";
2845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitUsesUniversalDetector[] =
2855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.uses_universal_detector";
2865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitTextAreasAreResizable[] =
2875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.text_areas_are_resizable";
2885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled";
2895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links";
2905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitAllowDisplayingInsecureContent[] =
2915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.allow_displaying_insecure_content";
2925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitAllowRunningInsecureContent[] =
2935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.allow_running_insecure_content";
2945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_ANDROID)
2955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor";
2965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom";
297868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)const char kWebKitPasswordEchoEnabled[] =
298868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)    "webkit.webprefs.password_echo_enabled";
2995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
3005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitCommonScript[] = "Zyyy";
3025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitStandardFontFamily[] = "webkit.webprefs.fonts.standard.Zyyy";
3035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFixedFontFamily[] = "webkit.webprefs.fonts.fixed.Zyyy";
3045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSerifFontFamily[] = "webkit.webprefs.fonts.serif.Zyyy";
3055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitSansSerifFontFamily[] =
3065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.sansserif.Zyyy";
3075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitCursiveFontFamily[] = "webkit.webprefs.fonts.cursive.Zyyy";
3085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitFantasyFontFamily[] = "webkit.webprefs.fonts.fantasy.Zyyy";
3095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitPictographFontFamily[] =
3105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.fonts.pictograph.Zyyy";
3115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitDefaultFontSize[] = "webkit.webprefs.default_font_size";
3125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitDefaultFixedFontSize[] =
3135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.default_fixed_font_size";
3145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitMinimumFontSize[] = "webkit.webprefs.minimum_font_size";
3155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitMinimumLogicalFontSize[] =
3165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.minimum_logical_font_size";
3175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitJavascriptEnabled[] = "webkit.webprefs.javascript_enabled";
3185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitJavascriptCanOpenWindowsAutomatically[] =
3195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.javascript_can_open_windows_automatically";
3205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitLoadsImagesAutomatically[] =
3215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "webkit.webprefs.loads_images_automatically";
3225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebKitPluginsEnabled[] = "webkit.webprefs.plugins_enabled";
3235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that is true when SafeBrowsing is enabled.
3255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSafeBrowsingEnabled[] = "safebrowsing.enabled";
3265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3275d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Boolean that tell us whether malicious download feedback is enabled.
328f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kSafeBrowsingExtendedReportingEnabled[] =
329f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "safebrowsing.extended_reporting_enabled";
330f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)
331f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)// Boolean that tell us whether malicious download feedback is enabled.
332f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)// TODO(felt): Deprecate. crbug.com/383866
3335d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kSafeBrowsingDownloadFeedbackEnabled[] =
3345d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "safebrowsing.download_feedback_enabled";
3355d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
3365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that is true when SafeBrowsing Malware Report is enabled.
337f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)// TODO(felt): Deprecate. crbug.com/383866
3385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSafeBrowsingReportingEnabled[] =
3395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "safebrowsing.reporting_enabled";
3405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that is true when the SafeBrowsing interstitial should not allow
3425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// users to proceed anyway.
3435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSafeBrowsingProceedAnywayDisabled[] =
3445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "safebrowsing.proceed_anyway_disabled";
3455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3466d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// Boolean that is true when SafeBrowsing has sent an incident report.
3476d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)const char kSafeBrowsingIncidentReportSent[] =
3486d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)    "safebrowsing.incident_report_sent";
3496d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
3505f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// A dictionary mapping incident types to a dict of incident key:digest pairs.
3515f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)const char kSafeBrowsingIncidentsSent[] = "safebrowsing.incidents_sent";
3525f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)
3535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Enum that specifies whether Incognito mode is:
3545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 0 - Enabled. Default behaviour. Default mode is available on demand.
3555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 1 - Disabled. Used cannot browse pages in Incognito mode.
3565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 2 - Forced. All pages/sessions are forced into Incognito.
3575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kIncognitoModeAvailability[] = "incognito.mode_availability";
3585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that is true when Suggest support is enabled.
3605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSearchSuggestEnabled[] = "search.suggest_enabled";
3615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3625d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#if defined(OS_ANDROID)
363116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// String indicating the Contextual Search enabled state.
364116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// "false" - opt-out (disabled)
365116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// "" (empty string) - undecided
366116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// "true" - opt-in (enabled)
3675d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kContextualSearchEnabled[] = "search.contextual_search_enabled";
3685d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#endif
3695d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
3705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that indicates whether the browser should put up a confirmation
3715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// window when the user is attempting to quit. Mac only.
3725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit";
3735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// OBSOLETE.  Enum that specifies whether to enforce a third-party cookie
3755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// blocking policy.  This has been superseded by kDefaultContentSettings +
3765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// kBlockThirdPartyCookies.
3775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 0 - allow all cookies.
3785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 1 - block third-party cookies
3795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 2 - block all cookies
3805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCookieBehavior[] = "security.cookie_behavior";
3815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean which specifies whether we should ask the user if we should download
3835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// a file (true) or just download it automatically.
3845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPromptForDownload[] = "download.prompt_for_download";
3855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if we're using Link Doctor error pages.
3875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled";
3885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// OBSOLETE: new pref now stored with user prefs instead of profile, as
3905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// kDnsPrefetchingStartupList.
3915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDnsStartupPrefetchList[] = "StartupDNSPrefetchList";
3925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An adaptively identified list of domain names to be pre-fetched during the
3945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// next startup, based on what was actually needed during this startup.
3955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDnsPrefetchingStartupList[] = "dns_prefetching.startup_list";
3965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// OBSOLETE: new pref now stored with user prefs instead of profile, as
3985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// kDnsPrefetchingHostReferralList.
3995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDnsHostReferralList[] = "HostReferralList";
4005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A list of host names used to fetch web pages, and their commonly used
4025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// sub-resource hostnames (and expected latency benefits from pre-resolving, or
4035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// preconnecting to, such sub-resource hostnames).
4045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// This list is adaptively grown and pruned.
4055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDnsPrefetchingHostReferralList[] =
4065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "dns_prefetching.host_referral_list";
4075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Disables the SPDY protocol.
4095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableSpdy[] = "spdy.disabled";
4105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Prefs for persisting HttpServerProperties.
4125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kHttpServerProperties[] = "net.http_server_properties";
4135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Prefs for server names that support SPDY protocol.
4155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSpdyServers[] = "spdy.servers";
4165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Prefs for servers that support Alternate-Protocol.
4185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAlternateProtocolServers[] = "spdy.alternate_protocol";
4195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Disables the listed protocol schemes.
4215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisabledSchemes[] = "protocol.disabled_schemes";
4225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
423010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)#if defined(OS_ANDROID) || defined(OS_IOS)
4247dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// Last time that a check for cloud policy management was done. This time is
4257dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// recorded on Android so that retries aren't attempted on every startup.
4267dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// Instead the cloud policy registration is retried at least 1 or 3 days later.
4277dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochconst char kLastPolicyCheckTime[] = "policy.last_policy_check_time";
4287dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch#endif
4292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
4305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Prefix URL for the experimental Instant ZeroSuggest provider.
4315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kInstantUIZeroSuggestUrlPrefix[] =
4325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "instant_ui.zero_suggest_url_prefix";
4335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Used to migrate preferences from local state to user preferences to
4355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// enable multiple profiles.
4365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// BITMASK with possible values (see browser_prefs.cc for enum):
4375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 0: No preferences migrated.
4385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 1: DNS preferences migrated: kDnsPrefetchingStartupList and HostReferralList
4395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 2: Browser window preferences migrated: kDevToolsSplitLocation and
4405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//    kBrowserWindowPlacement
4415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMultipleProfilePrefMigration[] =
4425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "local_state.multiple_profile_prefs_version";
4435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if prediction of network actions is allowed.
4455d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Actions include DNS prefetching, TCP and SSL preconnection, prerendering
4465d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// of web pages, and resource prefetching.
4475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// NOTE: The "dns_prefetching.enabled" value is used so that historical user
4485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// preferences are not lost.
449116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// TODO(bnc): Remove kNetworkPredictionEnabled once kNetworkPredictionOptions
450116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// is functioning as per crbug.com/334602.
4515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNetworkPredictionEnabled[] = "dns_prefetching.enabled";
4525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4536d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// A preference of enum chrome_browser_net::NetworkPredictionOptions shows
4546d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// if prediction of network actions is allowed, depending on network type.
4556d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// Actions include DNS prefetching, TCP and SSL preconnection, prerendering
4566d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// of web pages, and resource prefetching.
4576d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// TODO(bnc): Implement this preference as per crbug.com/334602.
458116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kNetworkPredictionOptions[] = "net.network_prediction_options";
4596d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
4605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An integer representing the state of the default apps installation process.
4615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// This value is persisted in the profile's user preferences because the process
4625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// is async, and the user may have stopped chrome in the middle.  The next time
4635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// the profile is opened, the process will continue from where it left off.
4645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//
4655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// See possible values in external_provider_impl.cc.
4665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultAppsInstallState[] = "default_apps_install_state";
4675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4682a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// A boolean pref set to true if the Chrome Web Store icons should be hidden
4692a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// from the New Tab Page and app launcher.
4702a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kHideWebStoreIcon[] = "hide_web_store_icon";
4712a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
4725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_CHROMEOS)
473c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// A dictionary pref to hold the mute setting for all the currently known
474c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// audio devices.
475c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kAudioDevicesMute[] = "settings.audio.devices.mute";
476c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
477c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// A dictionary pref storing the volume settings for all the currently known
478c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// audio devices.
479c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kAudioDevicesVolumePercent[] =
480c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    "settings.audio.devices.volume_percent";
481c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
4825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An integer pref to initially mute volume if 1. This pref is ignored if
4835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// |kAudioOutputAllowed| is set to false, but its value is preserved, therefore
484c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// when the policy is lifted the original mute state is restored.  This setting
485c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// is here only for migration purposes now. It is being replaced by the
486c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// |kAudioDevicesMute| setting.
4875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAudioMute[] = "settings.audio.mute";
4885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
489c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// A double pref storing the user-requested volume. This setting is here only
490c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// for migration purposes now. It is being replaced by the
491c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// |kAudioDevicesVolumePercent| setting.
4925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAudioVolumePercent[] = "settings.audio.volume_percent";
4935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4945d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// An integer pref to record user's spring charger check result.
4955d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// 0 - unknown charger, not checked yet.
4965d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// 1 - confirmed safe charger.
4975d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// 2 - confirmed original charger and declined to order new charger.
4985d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// 3 - confirmed original charger and ordered new charger online.
4995d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// 4 - confirmed original charger and ordered new charger by phone.
5005d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// 5 - confirmed original charger, ordered a new one online, but continue to use
5015d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)//     the old one.
5025d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// 6 - confirmed original charger, ordered a new one by phone, but continue to
5035d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)//     use the old one.
5045d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kSpringChargerCheck[] = "settings.spring_charger.check_result";
5055d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
5065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if touchpad tap-to-click is enabled.
5075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click";
5085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if touchpad tap-dragging is enabled.
5105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kTapDraggingEnabled[] = "settings.touchpad.enable_tap_dragging";
5115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if touchpad three-finger-click is enabled.
5135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kEnableTouchpadThreeFingerClick[] =
5145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.touchpad.enable_three_finger_click";
5155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if touchpad natural scrolling is enabled.
5175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNaturalScroll[] = "settings.touchpad.natural_scroll";
5185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if primary mouse button is the left button.
5205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPrimaryMouseButtonRight[] = "settings.mouse.primary_right";
5215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A integer pref for the touchpad sensitivity.
5235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMouseSensitivity[] = "settings.mouse.sensitivity2";
5245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A integer pref for the touchpad sensitivity.
5265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2";
5275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if time should be displayed in 24-hour clock.
5295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUse24HourClock[] = "settings.clock.use_24hour_clock";
5305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref to disable Google Drive integration.
5325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The pref prefix should remain as "gdata" for backward compatibility.
5335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableDrive[] = "gdata.disabled";
5345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref to disable Drive over cellular connections.
5365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The pref prefix should remain as "gdata" for backward compatibility.
5375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableDriveOverCellular[] = "gdata.cellular.disabled";
5385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref to disable hosted files on Drive.
5405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The pref prefix should remain as "gdata" for backward compatibility.
5415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableDriveHostedFiles[] = "gdata.hosted_files.disabled";
5425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref set to the current input method.
5445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageCurrentInputMethod[] =
5455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.current_input_method";
5465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref set to the previous input method.
5485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguagePreviousInputMethod[] =
5495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.previous_input_method";
5505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref (comma-separated list) set to the "next engine in menu"
5525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// hot-key lists.
5535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageHotkeyNextEngineInMenu[] =
5545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.hotkey_next_engine_in_menu";
5555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref (comma-separated list) set to the "previous engine"
5575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// hot-key lists.
5585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageHotkeyPreviousEngine[] =
5595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.hotkey_previous_engine";
5605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref (comma-separated list) set to the preferred language IDs
5625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// (ex. "en-US,fr,ko").
5635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguagePreferredLanguages[] =
5645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.preferred_languages";
5655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref (comma-separated list) set to the preloaded (active) input
5675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// method IDs (ex. "pinyin,mozc").
5685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguagePreloadEngines[] = "settings.language.preload_engines";
5695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
570b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)// A List pref (comma-separated list) set to the extension IMEs to be enabled.
571b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)const char kLanguageEnabledExtensionImes[] =
572b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)    "settings.language.enabled_extension_imes";
5735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5741e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// Integer prefs which determine how we remap modifier keys (e.g. swap Alt and
5755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Control.) Possible values for these prefs are 0-4. See ModifierKey enum in
5765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// src/chrome/browser/chromeos/input_method/xkeyboard.h
5775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageRemapSearchKeyTo[] =
5785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    // Note: we no longer use XKB for remapping these keys, but we can't change
5795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    // the pref names since the names are already synced with the cloud.
5805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.xkb_remap_search_key_to";
5815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageRemapControlKeyTo[] =
5825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.xkb_remap_control_key_to";
5835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageRemapAltKeyTo[] =
5845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.xkb_remap_alt_key_to";
5855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageRemapCapsLockKeyTo[] =
5865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.remap_caps_lock_key_to";
5872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kLanguageRemapDiamondKeyTo[] =
5882a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "settings.language.remap_diamond_key_to";
5895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5901e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// A boolean pref that causes top-row keys to be interpreted as function keys
5911e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// instead of as media keys.
5921e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)const char kLanguageSendFunctionKeys[] =
5931e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)    "settings.language.send_function_keys";
5941e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)
5955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref which determines whether key repeat is enabled.
5965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageXkbAutoRepeatEnabled[] =
5975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.xkb_auto_repeat_enabled_r2";
5985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A integer pref which determines key repeat delay (in ms).
5995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageXkbAutoRepeatDelay[] =
6005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.xkb_auto_repeat_delay_r2";
6015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A integer pref which determines key repeat interval (in ms).
6025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLanguageXkbAutoRepeatInterval[] =
6035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.language.xkb_auto_repeat_interval_r2";
6045f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// "_r2" suffixes were added to the three prefs above when we changed the
6055f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// preferences to not be user-configurable or sync with the cloud. The prefs are
6065f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// now user-configurable and syncable again, but we don't want to overwrite the
6075f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// current values with the old synced values, so we continue to use this suffix.
6085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
609868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// A boolean pref which determines whether the large cursor feature is enabled.
610f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityLargeCursorEnabled[] =
611f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.large_cursor_enabled";
6125d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
6137d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)// A boolean pref which determines whether the sticky keys feature is enabled.
614f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityStickyKeysEnabled[] =
615f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.sticky_keys_enabled";
6165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref which determines whether spoken feedback is enabled.
617f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilitySpokenFeedbackEnabled[] = "settings.accessibility";
6185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref which determines whether high conrast is enabled.
619f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityHighContrastEnabled[] =
620f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.high_contrast_enabled";
6215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref which determines whether screen magnifier is enabled.
622f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityScreenMagnifierEnabled[] =
623f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.screen_magnifier";
6242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// A integer pref which determines what type of screen magnifier is enabled.
6252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Note that: 'screen_magnifier_type' had been used as string pref. Hence,
6262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// we are using another name pref here.
627f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityScreenMagnifierType[] =
628f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.screen_magnifier_type2";
6295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A double pref which determines a zooming scale of the screen magnifier.
630f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityScreenMagnifierScale[] =
631f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.screen_magnifier_scale";
6325d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// A boolean pref which determines whether the virtual keyboard is enabled for
6335d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// accessibility.  This feature is separate from displaying an onscreen keyboard
6345d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// due to lack of a physical keyboard.
635f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityVirtualKeyboardEnabled[] =
636f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.virtual_keyboard";
6374e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// A boolean pref which determines whether autoclick is enabled.
638f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityAutoclickEnabled[] = "settings.a11y.autoclick";
6398bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// An integer pref which determines time in ms between when the mouse cursor
6408bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// stops and when an autoclick is triggered.
641f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kAccessibilityAutoclickDelayMs[] =
642f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "settings.a11y.autoclick_delay_ms";
6432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// A boolean pref which determines whether the accessibility menu shows
6442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// regardless of the state of a11y features.
6452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu";
6465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref which turns on Advanced Filesystem
6485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// (USB support, SD card, etc).
6495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLabsAdvancedFilesystemEnabled[] =
6505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.labs.advanced_filesystem";
6515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref which turns on the mediaplayer.
6535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer";
6545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6555d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// A boolean pref that turns on automatic screen locking.
6565d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kEnableAutoScreenLock[] = "settings.enable_screen_lock";
6575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref of whether to show mobile plan notifications.
6595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShowPlanNotifications[] =
6605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.internet.mobile.show_plan_notifications";
6615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref of whether to show 3G promo notification.
6635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShow3gPromoNotification[] =
6645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.internet.mobile.show_3g_promo_notification";
6655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string pref that contains version where "What's new" promo was shown.
6675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kChromeOSReleaseNotesVersion[] = "settings.release_notes.version";
6685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6697dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// A boolean pref that controls whether proxy settings from shared network
6707dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// settings (accordingly from device policy) are applied or ignored.
6715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUseSharedProxies[] = "settings.use_shared_proxies";
6725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
673c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Power state of the current displays from the last run.
674c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kDisplayPowerState[] = "settings.display.power_state";
6752a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// A dictionary pref that stores per display preferences.
6762a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kDisplayProperties[] = "settings.display.properties";
6775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
6785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A dictionary pref that specifies per-display layout/offset information.
6795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Its key is the ID of the display and its value is a dictionary for the
6805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// layout/offset information.
6815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSecondaryDisplays[] = "settings.display.secondary_displays";
6822a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
6831e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// A boolean pref indicating whether user activity has been observed in the
6841e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// current session already. The pref is used to restore information about user
6851e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// activity after browser crashes.
6861e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)const char kSessionUserActivitySeen[] = "session.user_activity_seen";
6871e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)
6881e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// A preference to keep track of the session start time. If the session length
6891e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// limit is configured to start running after initial user activity has been
6901e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// observed, the pref is set after the first user activity in a session.
6911e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// Otherwise, it is set immediately after session start. The pref is used to
6921e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// restore the session start time after browser crashes. The time is expressed
6931e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// as the serialization obtained from base::TimeTicks::ToInternalValue().
6942a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kSessionStartTime[] = "session.start_time";
6952a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
6962a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Holds the maximum session time in milliseconds. If this pref is set, the
6972a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// user is logged out when the maximum session time is reached. The user is
6982a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// informed about the remaining time by a countdown timer shown in the ash
6992a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// system tray.
7002a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kSessionLengthLimit[] = "session.length_limit";
7012a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
7021e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// Whether the session length limit should start running only after the first
7031e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// user activity has been observed in a session.
7041e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)const char kSessionWaitForInitialUserActivity[] =
7051e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)    "session.wait_for_initial_user_activity";
7061e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)
7072a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Inactivity time in milliseconds while the system is on AC power before
7082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// the screen should be dimmed, turned off, or locked, before an
7092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// IdleActionImminent D-Bus signal should be sent, or before
710eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch// kPowerAcIdleAction should be performed.  0 disables the delay (N/A for
7112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// kPowerAcIdleDelayMs).
7122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerAcScreenDimDelayMs[] = "power.ac_screen_dim_delay_ms";
7132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerAcScreenOffDelayMs[] = "power.ac_screen_off_delay_ms";
7142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerAcScreenLockDelayMs[] = "power.ac_screen_lock_delay_ms";
7152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerAcIdleWarningDelayMs[] = "power.ac_idle_warning_delay_ms";
7162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerAcIdleDelayMs[] = "power.ac_idle_delay_ms";
7172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
7182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Similar delays while the system is on battery power.
7192a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerBatteryScreenDimDelayMs[] =
7202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "power.battery_screen_dim_delay_ms";
7212a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerBatteryScreenOffDelayMs[] =
7222a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "power.battery_screen_off_delay_ms";
7232a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerBatteryScreenLockDelayMs[] =
7242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "power.battery_screen_lock_delay_ms";
7252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerBatteryIdleWarningDelayMs[] =
7262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "power.battery_idle_warning_delay_ms";
7272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerBatteryIdleDelayMs[] =
7282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "power.battery_idle_delay_ms";
7292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
730eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch// Action that should be performed when the idle delay is reached while the
731eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch// system is on AC power or battery power.
7322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Values are from the chromeos::PowerPolicyController::Action enum.
733eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdochconst char kPowerAcIdleAction[] = "power.ac_idle_action";
734eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdochconst char kPowerBatteryIdleAction[] = "power.battery_idle_action";
7352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
7362a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Action that should be performed when the lid is closed.
7372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Values are from the chromeos::PowerPolicyController::Action enum.
7382a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerLidClosedAction[] = "power.lid_closed_action";
7392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
7402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Should audio and video activity be used to disable the above delays?
7412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerUseAudioActivity[] = "power.use_audio_activity";
7422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPowerUseVideoActivity[] = "power.use_video_activity";
7432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
744c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Should extensions be able to use the chrome.power API to override
745c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// screen-related power management (including locking)?
746c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kPowerAllowScreenWakeLocks[] = "power.allow_screen_wake_locks";
747c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
7487d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)// Amount by which the screen-dim delay should be scaled while the system
7497d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)// is in presentation mode. Values are limited to a minimum of 1.0.
7507d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)const char kPowerPresentationScreenDimDelayFactor[] =
7517d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)    "power.presentation_screen_dim_delay_factor";
7527d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)
753c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Amount by which the screen-dim delay should be scaled when user activity is
754c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// observed while the screen is dimmed or soon after the screen has been turned
755c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// off.  Values are limited to a minimum of 1.0.
756c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kPowerUserActivityScreenDimDelayFactor[] =
757c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    "power.user_activity_screen_dim_delay_factor";
758c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
7591e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// Whether the power management delays should start running only after the first
7601e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// user activity has been observed in a session.
7611e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)const char kPowerWaitForInitialUserActivity[] =
7621e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)    "power.wait_for_initial_user_activity";
7631e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)
7642a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// The URL from which the Terms of Service can be downloaded. The value is only
7652a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// honored for public accounts.
7662a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kTermsOfServiceURL[] = "terms_of_service.url";
767c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
768c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Indicates that the Profile has made navigations that used a certificate
769c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// installed by the system administrator. If that is true then the local cache
770c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// of remote data is tainted (e.g. shared scripts), and future navigations
771c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// show a warning indicating that the organization may track the browsing
772c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// session.
773c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kUsedPolicyCertificatesOnce[] = "used_policy_certificates_once";
774c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
775c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Indicates whether the remote attestation is enabled for the user.
776c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kAttestationEnabled[] = "attestation.enabled";
777c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// The list of extensions allowed to use the platformKeysPrivate API for
778c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// remote attestation.
779c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kAttestationExtensionWhitelist[] = "attestation.extension_whitelist";
7807dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
7817dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// A boolean pref indicating whether the projection touch HUD is enabled or not.
7827dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochconst char kTouchHudProjectionEnabled[] = "touch_hud.projection_enabled";
783ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch
784ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// A pref to configure networks. Its value must be a list of
785ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// NetworkConfigurations according to the OpenNetworkConfiguration
786ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// specification.
78758537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// Currently, this pref is only used to store the policy. The user's
78858537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// configuration is still stored in Shill.
789ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdochconst char kOpenNetworkConfiguration[] = "onc";
79058537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)
79158537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// A boolean pref that tracks whether the user has already given consent for
79258537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// enabling remote attestation for content protection.
79358537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)const char kRAConsentFirstTime[] = "settings.privacy.ra_consent";
79468043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)
79568043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// A boolean pref recording whether user has dismissed the multiprofile
7965d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// itroduction dialog show.
7975d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kMultiProfileNeverShowIntro[] =
7985d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "settings.multi_profile_never_show_intro";
7995d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
8005d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// A boolean pref recording whether user has dismissed the multiprofile
8015d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// teleport warning dialog show.
8025d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kMultiProfileWarningShowDismissed[] =
8035d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "settings.multi_profile_warning_show_dismissed";
8045d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
80568043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// A string pref that holds string enum values of how the user should behave
80668043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// in a multiprofile session. See ChromeOsMultiProfileUserBehavior policy
80768043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// for more details of the valid values.
80868043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)const char kMultiProfileUserBehavior[] = "settings.multiprofile_user_behavior";
8095d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
8105d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// A boolean preference indicating whether user has seen first-run tutorial
8115d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// already.
8125d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kFirstRunTutorialShown[] = "settings.first_run_tutorial_shown";
8135d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
8145d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Indicates the amount of time for which a user authenticated via SAML can use
8155d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// offline authentication against a cached password before being forced to go
8165d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// through online authentication against GAIA again. The time is expressed in
8175d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// seconds. A value of -1 indicates no limit, allowing the user to use offline
8185d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// authentication indefinitely. The limit is in effect only if GAIA redirected
8195d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// the user to a SAML IdP during the last online authentication.
8205d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kSAMLOfflineSigninTimeLimit[] = "saml.offline_signin_time_limit";
8215d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
8225d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// A preference to keep track of the last time the user authenticated against
8235d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// GAIA using SAML. The preference is updated whenever the user authenticates
8245d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the
8255d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// current time. If GAIA performs the authentication itself, the preference is
8265d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// cleared. The time is expressed as the serialization obtained from
8275d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// base::Time::ToInternalValue().
8285d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time";
8295d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
830a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)// The total number of seconds that the machine has spent sitting on the
831a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)// OOBE screen.
832a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)const char kTimeOnOobe[] = "settings.time_on_oobe";
833cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)
834cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// The app/extension name who sets the current wallpaper. If current wallpaper
835cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// is set by the component wallpaper picker, it is set to an empty string.
836cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)const char kCurrentWallpaperAppName[] = "wallpaper.app.name";
83746d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
83846d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// List of mounted file systems via the File System Provider API. Used to
83946d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// restore them after a reboot.
84046d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)const char kFileSystemProviderMounted[] = "file_system_provider.mounted";
8416d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
8426d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// A boolean pref set to true if the virtual keyboard should be enabled.
8436d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled";
8446d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
8455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif  // defined(OS_CHROMEOS)
8465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The disabled messages in IPC logging.
8485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kIpcDisabledMessages[] = "ipc_log_disabled_messages";
8495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref set to true if a Home button to open the Home pages should be
8515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// visible on the toolbar.
8525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShowHomeButton[] = "browser.show_home_button";
8535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A string value which saves short list of recently user selected encodings
8555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// separated with comma punctuation mark.
8565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings";
8575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Clear Browsing Data dialog preferences.
8595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history";
8605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeleteDownloadHistory[] = "browser.clear_data.download_history";
8615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeleteCache[] = "browser.clear_data.cache";
8625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeleteCookies[] = "browser.clear_data.cookies";
8635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeletePasswords[] = "browser.clear_data.passwords";
8645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeleteFormData[] = "browser.clear_data.form_data";
8655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data";
8665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeauthorizeContentLicenses[] =
8675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.clear_data.content_licenses";
8685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeleteTimePeriod[] = "browser.clear_data.time_period";
8692a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kLastClearBrowsingDataTime[] =
8702a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "browser.last_clear_browsing_data_time";
8715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean pref to define the default values for using spellchecker.
8732a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking";
8745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List of names of the enabled labs experiments (see chrome/browser/labs.cc).
8765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments";
8775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean pref to define the default values for using auto spell correct.
8795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect";
8805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean pref to define the default setting for "block offensive words".
8825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The old key value is kept to avoid unnecessary migration code.
8835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSpeechRecognitionFilterProfanities[] =
8845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.speechinput_censor_results";
8855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List of speech recognition context names (extensions or websites) for which
8875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// the tray notification balloon has already been shown.
8885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSpeechRecognitionTrayNotificationShownContexts[] =
8895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.speechinput_tray_notification_shown_contexts";
8905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean controlling whether history saving is disabled.
8925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled";
8935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
8942a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Boolean controlling whether deleting browsing and download history is
8952a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// permitted.
8962a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled";
8972a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
8985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean controlling whether SafeSearch is mandatory for Google Web Searches.
8995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kForceSafeSearch[] = "settings.force_safesearch";
9005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
901eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
902eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch// Linux specific preference on whether we should match the system theme.
9035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUsesSystemTheme[] = "extensions.theme.use_system";
9045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
9055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCurrentThemePackFilename[] = "extensions.theme.pack";
9065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCurrentThemeID[] = "extensions.theme.id";
9075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCurrentThemeImages[] = "extensions.theme.images";
9085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCurrentThemeColors[] = "extensions.theme.colors";
9095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCurrentThemeTints[] = "extensions.theme.tints";
9105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties";
9115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean pref which persists whether the extensions_ui is in developer mode
9135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// (showing developer packing tools and extensions details)
9145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kExtensionsUIDeveloperMode[] = "extensions.ui.developer_mode";
9155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9165c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// Boolean pref which indicates whether the Chrome Apps & Extensions Developer
9175c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// Tool promotion has been dismissed by the user.
9185c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liuconst char kExtensionsUIDismissedADTPromo[] =
9195c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu    "extensions.ui.dismissed_adt_promo";
9205c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu
9215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Dictionary pref that tracks which command belongs to which
9225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// extension + named command pair.
9235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kExtensionCommands[] = "extensions.commands";
9245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Pref containing the directory for internal plugins as written to the plugins
9265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// list (below).
9275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsLastInternalDirectory[] = "plugins.last_internal_directory";
9285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List pref containing information (dictionaries) on plugins.
9305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsPluginsList[] = "plugins.plugins_list";
9315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List pref containing names of plugins that are disabled by policy.
9335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsDisabledPlugins[] = "plugins.plugins_disabled";
9345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List pref containing exceptions to the list of plugins disabled by policy.
9365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsDisabledPluginsExceptions[] =
9375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "plugins.plugins_disabled_exceptions";
9385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List pref containing names of plugins that are enabled by policy.
9405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsEnabledPlugins[] = "plugins.plugins_enabled";
9415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// When bundled NPAPI Flash is removed, if at that point it is enabled while
9435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Pepper Flash is disabled, we would like to turn on Pepper Flash. And we will
9445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// want to do so only once.
9455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsMigratedToPepperFlash[] = "plugins.migrated_to_pepper_flash";
9465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// In the early stage of component-updated PPAPI Flash, we did field trials in
9482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// which it was set to disabled by default. The corresponding settings item may
9492a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// remain in some users' profiles. Currently it affects both the bundled and
9502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// component-updated PPAPI Flash (since the two share the same enable/disable
9512a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// state). We want to remove this item to get those users to use PPAPI Flash.
9522a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// We will want to do so only once.
9532a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kPluginsRemovedOldComponentPepperFlashSettings[] =
9542a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "plugins.removed_old_component_pepper_flash_settings";
9552a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
9565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if !defined(OS_ANDROID)
9575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether about:plugins is shown in the details mode or not.
9585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsShowDetails[] = "plugins.show_details";
9595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
9605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that indicates whether outdated plugins are allowed or not.
9625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsAllowOutdated[] = "plugins.allow_outdated";
9635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that indicates whether plugins that require authorization should
9655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// be always allowed or not.
9665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize";
9675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(ENABLE_PLUGIN_INSTALLATION)
9695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Dictionary holding plug-ins metadata.
9705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsMetadata[] = "plugins.metadata";
9715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Last update time of plug-ins resource cache.
9735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update";
9745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
9755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that indicates whether we should check if we are the default browser
9775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// on start-up.
9785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCheckDefaultBrowser[] = "browser.check_default_browser";
9795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Policy setting whether default browser check should be disabled and default
9815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// browser registration should take place.
9825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultBrowserSettingEnabled[] =
9835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.default_browser_setting_enabled";
9845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_MACOSX)
9865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that indicates whether the application should show the info bar
9875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// asking the user to set up automatic updates when Keystone promotion is
9885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// required.
9895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShowUpdatePromotionInfoBar[] =
9905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.show_update_promotion_info_bar";
9915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
9925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that is false if we should show window manager decorations.  If
9945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// true, we draw a custom chrome frame (thicker title bar and blue border).
9955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame";
9965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
9975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Dictionary of content settings applied to all hosts by default.
9985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultContentSettings[] = "profile.default_content_settings";
9995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean indicating whether the clear on exit pref was migrated to content
10015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// settings yet.
10025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kContentSettingsClearOnExitMigrated[] =
10035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.content_settings.clear_on_exit_migrated";
10045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Version of the pattern format used to define content settings.
10065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kContentSettingsVersion[] = "profile.content_settings.pref_version";
10075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Patterns for mapping origins to origin related settings. Default settings
10092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// will be applied to origins that don't match any of the patterns. The pattern
10102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// format used is defined by kContentSettingsVersion.
10115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kContentSettingsPatternPairs[] =
10125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.content_settings.pattern_pairs";
10135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Version of the content settings whitelist.
10155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kContentSettingsDefaultWhitelistVersion[] =
10165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.content_settings.whitelist_version";
10175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if !defined(OS_ANDROID)
10195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Which plugins have been whitelisted manually by the user.
10205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kContentSettingsPluginWhitelist[] =
10215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.content_settings.plugin_whitelist";
10225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
10235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that is true if we should unconditionally block third-party cookies,
10255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// regardless of other content settings.
10265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies";
10275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that is true when all locally stored site data (e.g. cookies, local
10295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// storage, etc..) should be deleted on exit.
10305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit";
10315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Double that indicates the default zoom level.
10335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultZoomLevel[] = "profile.default_zoom_level";
10345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Dictionary that maps hostnames to zoom levels.  Hosts not in this pref will
10365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// be displayed at the default zoom level.
10375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels";
10385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10397dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// A dictionary that tracks the default data model to use for each section of
10407dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// the dialog.
10417dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochconst char kAutofillDialogAutofillDefault[] = "autofill.data_model_default";
104290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
10432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Whether a user opted out of making purchases with Google Wallet; changed via
10442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// the autofill dialog's account chooser and set explicitly on dialog submission
10452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// (but not cancel). If this isn't set, the dialog assumes it's the first run.
10462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kAutofillDialogPayWithoutWallet[] = "autofill.pay_without_wallet";
10475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10480f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// Which GAIA users have accepted that use of Google Wallet implies their
10490f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// location will be shared with fraud protection services.
10500f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)const char kAutofillDialogWalletLocationAcceptance[] =
10510f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)    "autofill.wallet_location_disclosure";
10520f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)
105358537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// Whether a user wants to save data locally in Autofill.
105458537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)const char kAutofillDialogSaveData[] = "autofill.save_data";
105558537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)
10565d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Whether the user has selected "Same as billing" for the shipping address when
10575d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// using Google Wallet.
10585d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kAutofillDialogWalletShippingSameAsBilling[] =
10595d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "autofill.wallet_shipping_same_as_billing";
10605d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
10617dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// The number of times the generated credit card bubble has been shown.
10627dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochconst char kAutofillGeneratedCardBubbleTimesShown[] =
10637dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch    "autofill.generated_card_bubble_times_shown";
10647d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)
1065ba5b9a6411cb1792fd21f0a078d7a25cd1ceec16Ben Murdoch// A dictionary that tracks the defaults to be set on the next invocation
10665d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// of the requestAutocomplete dialog.
1067ba5b9a6411cb1792fd21f0a078d7a25cd1ceec16Ben Murdochconst char kAutofillDialogDefaults[] = "autofill.rac_dialog_defaults";
1068ba5b9a6411cb1792fd21f0a078d7a25cd1ceec16Ben Murdoch
10695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if !defined(OS_ANDROID)
10705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPinnedTabs[] = "pinned_tabs";
10715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
10725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_ANDROID)
10747d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)// Boolean that controls the enabled-state of Geolocation in content.
10755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kGeolocationEnabled[] = "geolocation.enabled";
10765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
10775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10787d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)#if defined(ENABLE_GOOGLE_NOW)
10797d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)// Boolean that is true when Google services can use the user's location.
10807d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)const char kGoogleGeolocationAccessEnabled[] =
10817d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)    "googlegeolocationaccess.enabled";
10827d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)#endif
10837d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)
10842a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// The default audio capture device used by the Media content setting.
10852a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device";
10862a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
10872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// The default video capture device used by the Media content setting.
10882a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device";
10895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1090a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)// The salt used for creating random MediaSource IDs.
1091a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)const char kMediaDeviceIdSalt[] = "media.device_id_salt";
1092a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
10935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Preference to disable 3D APIs (WebGL, Pepper 3D).
10945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisable3DAPIs[] = "disable_3d_apis";
10955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
10966d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)const char kEnableDeprecatedWebPlatformFeatures[] =
10976d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)    "enable_deprecated_web_platform_features";
10986d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
10995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether to enable hyperlink auditing ("<a ping>").
11005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kEnableHyperlinkAuditing[] = "enable_a_ping";
11015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether to enable sending referrers.
11035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kEnableReferrers[] = "enable_referrers";
11045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether to send the DNT header.
11065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kEnableDoNotTrack[] = "enable_do_not_track";
11075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// GL_VENDOR string.
11092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kGLVendorString[] = "gl_vendor_string";
11102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
11112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// GL_RENDERER string.
11122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kGLRendererString[] = "gl_renderer_string";
11132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
11142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// GL_VERSION string.
11152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kGLVersionString[] = "gl_version_string";
11162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
11175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to import bookmarks from the default browser
11185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// on first run.
11195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kImportBookmarks[] = "import_bookmarks";
11205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to import the browsing history from the
11225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// default browser on first run.
11235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kImportHistory[] = "import_history";
11245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to import the homepage from the default
11265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// browser on first run.
11275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kImportHomepage[] = "import_home_page";
11285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to import the search engine from the default
11305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// browser on first run.
11315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kImportSearchEngine[] = "import_search_engine";
11325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to import the saved passwords from the default
11345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// browser on first run.
11355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kImportSavedPasswords[] = "import_saved_passwords";
11365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Profile avatar and name
11385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProfileAvatarIndex[] = "profile.avatar_index";
11395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProfileName[] = "profile.name";
11405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1141f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)// The supervised user ID.
1142f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kSupervisedUserId[] = "profile.managed_user_id";
11432385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdoch
114423730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// 64-bit integer serialization of the base::Time when the user's GAIA info
114523730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// was last updated.
114623730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)const char kProfileGAIAInfoUpdateTime[] = "profile.gaia_info_update_time";
114723730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
114823730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// The URL from which the GAIA profile picture was downloaded. This is cached to
114923730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// prevent the same picture from being downloaded multiple times.
115023730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)const char kProfileGAIAInfoPictureURL[] = "profile.gaia_info_picture_url";
115123730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
11525f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// Integer that specifies the number of times that we have shown the upgrade
11535f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// tutorial card in the avatar menu bubble.
115423730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)const char kProfileAvatarTutorialShown[] =
115523730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)    "profile.avatar_bubble_tutorial_shown";
115623730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
11575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Indicates if we've already shown a notification that high contrast
11585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// mode is on, recommending high-contrast extensions and themes.
11595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kInvertNotificationShown[] = "invert_notification_version_2_shown";
11605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean controlling whether printing is enabled.
11625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPrintingEnabled[] = "printing.enabled";
11635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean controlling whether print preview is disabled.
11655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPrintPreviewDisabled[] = "printing.print_preview_disabled";
11665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
11672a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// An integer pref specifying the fallback behavior for sites outside of content
11682a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// packs. One of:
11692a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// 0: Allow (does nothing)
11702a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// 1: Warn.
11712a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// 2: Block.
1172f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kDefaultSupervisedUserFilteringBehavior[] =
11732a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "profile.managed.default_filtering_behavior";
11742a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1175f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)// Whether this user is permitted to create supervised users.
1176f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kSupervisedUserCreationAllowed[] =
1177eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch    "profile.managed_user_creation_allowed";
1178eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch
1179f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)// List pref containing the users supervised by this user.
1180f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kSupervisedUsers[] = "profile.managed_users";
118190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
11822a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// List pref containing the extension ids which are not allowed to send
11832a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// notifications to the message center.
11842a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kMessageCenterDisabledExtensionIds[] =
11852a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "message_center.disabled_extension_ids";
11862a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1187c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// List pref containing the system component ids which are not allowed to send
1188c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// notifications to the message center.
1189c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kMessageCenterDisabledSystemComponentIds[] =
1190c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    "message_center.disabled_system_component_ids";
1191c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
11920529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// Boolean pref indicating the Chrome Now welcome notification was dismissed
11930529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// by the user. Syncable.
11940529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// Note: This is now read-only. The welcome notification writes the _local
11950529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// version, below.
11961e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)extern const char kWelcomeNotificationDismissed[] =
11971e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)    "message_center.welcome_notification_dismissed";
11981e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)
11990529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// Boolean pref indicating the Chrome Now welcome notification was dismissed
12000529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// by the user on this machine.
12010529e5d033099cbfc42635f6f6183833b09dff6eBen Murdochextern const char kWelcomeNotificationDismissedLocal[] =
12020529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    "message_center.welcome_notification_dismissed_local";
12030529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch
12041e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// Boolean pref indicating the welcome notification was previously popped up.
12051e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)extern const char kWelcomeNotificationPreviouslyPoppedUp[] =
12061e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)    "message_center.welcome_notification_previously_popped_up";
12071e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)
12085d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Integer pref containing the expiration timestamp of the welcome notification.
12095d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)extern const char kWelcomeNotificationExpirationTimestamp[] =
12105d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "message_center.welcome_notification_expiration_timestamp";
12113551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)
1212424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)// Boolean pref that determines whether the user can enter fullscreen mode.
1213424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)// Disabling fullscreen mode also makes kiosk mode unavailable on desktop
1214424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)// platforms.
1215424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)extern const char kFullscreenAllowed[] = "fullscreen.allowed";
1216424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)
121768043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// Enable notifications for new devices on the local network that can be
121868043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// registered to the user's account, e.g. Google Cloud Print printers.
121968043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)const char kLocalDiscoveryNotificationsEnabled[] =
122068043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)    "local_discovery.notifications_enabled";
122168043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)
1222a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)// A timestamp (stored in base::Time::ToInternalValue format) of the last time
1223a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)// a preference was reset.
1224a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)const char kPreferenceResetTime[] = "prefs.preference_reset_time";
1225a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
12265d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// The GCM channel's enabled state.
12275d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kGCMChannelEnabled[] = "gcm.channel_enabled";
12285d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
1229f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)// How many Service Workers are registered with the Push API (could be zero).
1230f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)const char kPushMessagingRegistrationCount[] =
1231f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)    "gcm.push_messaging_registration_count";
1232f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)
123323730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// Whether Easy Unlock is enabled.
12345f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)const char kEasyUnlockEnabled[] = "easy_unlock.enabled";
123523730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
123623730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// Whether to show the Easy Unlock first run tutorial.
12375f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)const char kEasyUnlockShowTutorial[] = "easy_unlock.show_tutorial";
123823730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
123923730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// Preference storing Easy Unlock pairing data.
12405f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)const char kEasyUnlockPairing[] = "easy_unlock.pairing";
12415f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)
12425f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// Whether a user is allowed to use Easy Unlock.
12435f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)const char kEasyUnlockAllowed[] = "easy_unlock.allowed";
124423730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
1245010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)// A cache of zero suggest results using JSON serialized into a string.
1246010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)const char kZeroSuggestCachedResults[] = "zerosuggest.cachedresults";
1247010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)
12485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// *************** LOCAL STATE ***************
12495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// These are attached to the machine/installation
12505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1251ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// A pref to configure networks device-wide. Its value must be a list of
1252ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// NetworkConfigurations according to the OpenNetworkConfiguration
1253ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch// specification.
125458537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// Currently, this pref is only used to store the policy. The user's
125558537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// configuration is still stored in Shill.
1256ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdochconst char kDeviceOpenNetworkConfiguration[] = "device_onc";
1257ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch
12585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Directory of the last profile used.
12595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProfileLastUsed[] = "profile.last_used";
12605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
12615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List of directories of the profiles last active.
12625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProfilesLastActive[] = "profile.last_active_profiles";
12635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
12645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Total number of profiles created for this Chrome build. Used to tag profile
12655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// directories.
12665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProfilesNumCreated[] = "profile.profiles_created";
12675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
12685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String containing the version of Chrome that the profile was created by.
12695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// If profile was created before this feature was added, this pref will default
12705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// to "1.0.0.0".
12715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProfileCreatedByVersion[] = "profile.created_by_version";
12725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
12735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A map of profile data directory to cached information. This cache can be
12745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// used to display information about profiles without actually having to load
12755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// them.
12765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProfileInfoCache[] = "profile.info_cache";
12775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
12785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Prefs for SSLConfigServicePref.
12795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
12803240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdochconst char kCertRevocationCheckingRequiredLocalAnchors[] =
12813240926e260ce088908e02ac07a6cf7b0c0cbf44Ben Murdoch    "ssl.rev_checking.required_for_local_anchors";
12825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSSLVersionMin[] = "ssl.version_min";
12835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSSLVersionMax[] = "ssl.version_max";
12845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
12855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
1286c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
12875f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// Dictionary of dates when a site's SSL blocking interstitial was proceeded
12885f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// through.
12895f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)const char kSSLBlockingBypassed[] = "ssl.ssl_blocking_bypassed";
12905f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)
1291c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// A boolean pref of the EULA accepted flag.
1292c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kEulaAccepted[] = "EulaAccepted";
12935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
12945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether or not crash reporting and metrics reporting
12955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// are sent over the network for analysis.
12965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMetricsReportingEnabled[] =
12975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.reporting_enabled";
1298effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch
1299b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)// Boolean that specifies whether or not crash reports are sent
1300b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)// over the network for analysis.
1301b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)#if defined(OS_ANDROID)
1302b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)const char kCrashReportingEnabled[] =
1303b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)    "user_experience_metrics_crash.reporting_enabled";
1304b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)#endif
1305b2df76ea8fec9e32f6f3718986dba0d95315b29cTorne (Richard Coles)
13062a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// 64-bit integer serialization of the base::Time from the last successful seed
13072a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// fetch (i.e. when the Variations server responds with 200 or 304).
13082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kVariationsLastFetchTime[] = "variations_last_fetch_time";
13092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
13102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// String for the restrict parameter to be appended to the variations URL.
13112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kVariationsRestrictParameter[] = "variations_restrict_parameter";
13122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
13135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String serialized form of variations seed protobuf.
13145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kVariationsSeed[] = "variations_seed";
13155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// 64-bit integer serialization of the base::Time from the last seed received.
13175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kVariationsSeedDate[] = "variations_seed_date";
13185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1319a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)// SHA-1 hash of the serialized variations seed data (hex encoded).
13207dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochconst char kVariationsSeedHash[] = "variations_seed_hash";
13215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13225d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Digital signature of the binary variations seed data, base64-encoded.
13235d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kVariationsSeedSignature[] = "variations_seed_signature";
13245d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
13255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Number of times a page load event occurred since the last report.
13265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityPageLoadCount[] =
13275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.page_load_count";
13285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Number of times a renderer process crashed since the last report.
13305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityRendererCrashCount[] =
13315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.renderer_crash_count";
13325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Number of times an extension renderer process crashed since the last report.
13345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityExtensionRendererCrashCount[] =
13355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.extension_renderer_crash_count";
13365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// This is the location of a list of dictionaries of plugin stability stats.
13385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityPluginStats[] =
13395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.plugin_stats2";
13405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Number of times the renderer has become non-responsive since the last
13425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// report.
13435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityRendererHangCount[] =
13445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.renderer_hang_count";
13455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Total number of child process crashes (other than renderer / extension
13475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// renderer ones, and plugin children, which are counted separately) since the
13485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// last report.
13495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityChildProcessCrashCount[] =
13505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.child_process_crash_count";
13515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// On Chrome OS, total number of non-Chrome user process crashes
13535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// since the last report.
13545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityOtherUserCrashCount[] =
13555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.other_user_crash_count";
13565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// On Chrome OS, total number of kernel crashes since the last report.
13585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityKernelCrashCount[] =
13595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.kernel_crash_count";
13605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// On Chrome OS, total number of unclean system shutdowns since the
13625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// last report.
13635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilitySystemUncleanShutdownCount[] =
13645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "user_experience_metrics.stability.system_unclean_shutdowns";
13655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13665d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#if defined(OS_ANDROID)
13675d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Activity type that is currently in the foreground for the UMA session.
13685d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Uses the ActivityTypeIds::Type enum.
13695d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kStabilityForegroundActivityType[] =
13705d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "user_experience_metrics.stability.current_foreground_activity_type";
13715d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
13725d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Tracks which Activities were launched during the last session.
13735d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// See |metrics_service_android.cc| for its usage.
13745d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kStabilityLaunchedActivityFlags[] =
13755d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "user_experience_metrics.stability.launched_activity_flags";
13765d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
13775d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// List pref: Counts how many times each Activity was launched.
13785d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Indexed into by ActivityTypeIds::Type.
13795d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kStabilityLaunchedActivityCounts[] =
13805d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "user_experience_metrics.stability.launched_activity_counts";
13815d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
13825d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// List pref: Counts how many times each Activity type was in the foreground
13835d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// when a UMA session failed to be shut down properly.
13845d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Indexed into by ActivityTypeIds::Type.
13855d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kStabilityCrashedActivityCounts[] =
13865d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "user_experience_metrics.stability.crashed_activity_counts";
13875d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#endif
13885d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
13895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The keys below are used for the dictionaries in the
13905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// kStabilityPluginStats list.
13915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityPluginName[] = "name";
13925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityPluginLaunches[] = "launches";
13935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityPluginInstances[] = "instances";
13945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityPluginCrashes[] = "crashes";
13955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kStabilityPluginLoadingErrors[] = "loading_errors";
13965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
13975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The keys below are strictly increasing counters over the lifetime of
13985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// a chrome installation. They are (optionally) sent up to the uninstall
1399116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// survey in the event of uninstallation.
14005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUninstallMetricsPageLoadCount[] =
14015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "uninstall_metrics.page_load_count";
14025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUninstallLastLaunchTimeSec[] =
14035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "uninstall_metrics.last_launch_time_sec";
14045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUninstallLastObservedRunTimeSec[] =
14055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "uninstall_metrics.last_observed_running_time_sec";
14065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1407c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// String containing the version of Chrome for which Chrome will not prompt the
1408c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// user about setting Chrome as the default browser.
1409c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kBrowserSuppressDefaultBrowserPrompt[] =
1410c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    "browser.suppress_default_browser_prompt_for_version";
1411c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
14125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A collection of position, size, and other data relating to the browser
14135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// window to restore on startup.
14145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kBrowserWindowPlacement[] = "browser.window_placement";
14155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1416a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch// Browser window placement for popup windows.
1417a02191e04bc25c4935f804f2c080ae28663d096dBen Murdochconst char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup";
1418a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch
14195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A collection of position, size, and other data relating to the task
14205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// manager window to restore on startup.
14215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kTaskManagerWindowPlacement[] = "task_manager.window_placement";
14225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A collection of position, size, and other data relating to the keyword
14245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// editor window to restore on startup.
14255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kKeywordEditorWindowPlacement[] = "keyword_editor.window_placement";
14265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A collection of position, size, and other data relating to the preferences
14285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// window to restore on startup.
14295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPreferencesWindowPlacement[] = "preferences.window_placement";
14305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An integer specifying the total number of bytes to be used by the
14325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// renderer's in-memory cache of objects.
14335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMemoryCacheSize[] = "renderer.memory_cache.size";
14345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String which specifies where to download files to by default.
14365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDownloadDefaultDirectory[] = "download.default_directory";
14375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that records if the download directory was changed by an
14395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// upgrade a unsafe location to a safe location.
14405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDownloadDirUpgraded[] = "download.directory_upgrade";
14415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1442116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch#if defined(OS_WIN)
1443116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Whether downloaded PDFs should be opened in Adobe Acrobat Reader.
1444116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kOpenPdfDownloadInAdobeReader[] =
1445116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch    "download.open_pdf_in_adobe_reader";
1446116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch#endif
1447116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
14485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String which specifies where to save html files to by default.
14495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSaveFileDefaultDirectory[] = "savefile.default_directory";
14505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The type used to save the page. See the enum SavePackage::SavePackageType in
14525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// the chrome/browser/download/save_package.h for the possible values.
14535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSaveFileType[] = "savefile.type";
14545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String which specifies the last directory that was chosen for uploading
14565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// or opening a file.
14575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSelectFileLastDirectory[] = "selectfile.last_directory";
14585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies if file selection dialogs are shown.
14605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAllowFileSelectionDialogs[] = "select_file_dialogs.allowed";
14615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Map of default tasks, associated by MIME type.
14635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultTasksByMimeType[] =
14645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "filebrowser.tasks.default_by_mime_type";
14655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Map of default tasks, associated by file suffix.
14675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDefaultTasksBySuffix[] =
14685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "filebrowser.tasks.default_by_suffix";
14695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Extensions which should be opened upon completion.
14715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDownloadExtensionsToOpen[] = "download.extensions_to_open";
14725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Integer which specifies the frequency in milliseconds for detecting whether
14745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// plugin windows are hung.
14755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kHungPluginDetectFrequency[] = "browser.hung_plugin_detect_freq";
14765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Integer which specifies the timeout value to be used for SendMessageTimeout
14785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// to detect a hung plugin window.
14795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPluginMessageResponseTimeout[] =
14805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.plugin_message_response_timeout";
14815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String which represents the dictionary name for our spell-checker.
14835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSpellCheckDictionary[] = "spellcheck.dictionary";
14845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String which represents whether we use the spelling service.
14865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSpellCheckUseSpellingService[] = "spellcheck.use_spelling_service";
14875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Dictionary of schemes used by the external protocol handler.
14895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The value is true if the scheme must be ignored.
14905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kExcludedSchemes[] = "protocol_handler.excluded_schemes";
14915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Keys used for MAC handling of SafeBrowsing requests.
14935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSafeBrowsingClientKey[] = "safe_browsing.client_key";
14945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSafeBrowsingWrappedKey[] = "safe_browsing.wrapped_key";
14955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
14965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Integer that specifies the index of the tab the user was on when they
14975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// last visited the options window.
14985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kOptionsWindowLastTabIndex[] = "options_window.last_tab_index";
14995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Integer that specifies the index of the tab the user was on when they
15015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// last visited the content settings window.
15025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kContentSettingsWindowLastTabIndex[] =
15035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "content_settings_window.last_tab_index";
15045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Integer that specifies the index of the tab the user was on when they
15065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// last visited the Certificate Manager window.
15075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCertificateManagerWindowLastTabIndex[] =
15085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "certificate_manager_window.last_tab_index";
15095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Integer that specifies if the first run bubble should be shown.
15115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// This preference is only registered by the first-run procedure.
15122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kShowFirstRunBubbleOption[] = "show-first-run-bubble-option";
15135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String containing the last known intranet redirect URL, if any.  See
15155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// intranet_redirect_detector.h for more information.
15165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kLastKnownIntranetRedirectOrigin[] = "browser.last_redirect_origin";
15175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An enum value of how the browser was shut down (see browser_shutdown.h).
15195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShutdownType[] = "shutdown.type";
15205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Number of processes that were open when the user shut down.
15215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShutdownNumProcesses[] = "shutdown.num_processes";
15225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Number of processes that were shut down using the slow path.
15235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShutdownNumProcessesSlow[] = "shutdown.num_processes_slow";
15245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether to restart the current Chrome session automatically as the last thing
15265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// before shutting everything down.
15275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRestartLastSessionOnShutdown[] = "restart.last.session.on.shutdown";
15285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Set before autorestarting Chrome, cleared on clean exit.
15305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWasRestarted[] = "was.restarted";
15315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_WIN)
15330f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// Preference to be used while relaunching Chrome. This preference dictates if
15340f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// Chrome should be launched in Metro or Desktop mode.
15350f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// For more info take a look at ChromeRelaunchMode enum.
15360f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)const char kRelaunchMode[] = "relaunch.mode";
15372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
15385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Placeholder preference for disabling voice / video chat if it is ever added.
15405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Currently, this does not change any behavior.
15415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableVideoAndChat[] = "disable_video_chat";
15425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether Extensions are enabled.
15445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableExtensions[] = "extensions.disabled";
15455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether the plugin finder that lets you install missing plug-ins is enabled.
15475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisablePluginFinder[] = "plugins.disable_plugin_finder";
15485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1549f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// Customized app page names that appear on the New Tab Page.
1550f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpAppPageNames[] = "ntp.app_page_names";
1551f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)
15525f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)// Keeps track of currently open tabs collapsed state in the Other Devices menu.
15535f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)const char kNtpCollapsedCurrentlyOpenTabs[] = "ntp.collapsed_open_tabs";
15545f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)
15555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Keeps track of which sessions are collapsed in the Other Devices menu.
15565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions";
15575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1558f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// Keeps track of recently closed tabs collapsed state in the Other Devices
1559f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// menu.
1560f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpCollapsedRecentlyClosedTabs[] =
1561f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)    "ntp.collapsed_recently_closed_tabs";
15625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1563f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// Keeps track of snapshot documents collapsed state in the Other Devices menu.
1564f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpCollapsedSnapshotDocument[] = "ntp.collapsed_snapshot_document";
15655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1566f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// Keeps track of sync promo collapsed state in the Other Devices menu.
1567f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpCollapsedSyncPromo[] = "ntp.collapsed_sync_promo";
15685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Serves dates to determine display of elements on the NTP.
15705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNtpDateResourceServer[] = "ntp.date_resource_server";
15715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1572f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// New Tab Page URLs that should not be shown as most visited thumbnails.
1573f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist";
1574f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)
1575f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// True if a desktop sync session was found for this user.
1576f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpPromoDesktopSessionFound[] = "ntp.promo_desktop_session_found";
1577f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)
1578f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// Last time of update of promo_resource_cache.
1579f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update";
1580f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)
15815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Which bookmarks folder should be visible on the new tab page v4.
15825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNtpShownBookmarksFolder[] = "ntp.shown_bookmarks_folder";
15835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Which page should be visible on the new tab page v4
15855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNtpShownPage[] = "ntp.shown_page";
15865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1587f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// Serves tips for the NTP.
1588f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)const char kNtpTipsResourceServer[] = "ntp.tips_resource_server";
15895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean indicating whether the web store is active for the current locale.
15915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNtpWebStoreEnabled[] = "ntp.webstore_enabled";
15925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15937dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// A private RSA key for ADB handshake.
15947dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochconst char kDevToolsAdbKey[] = "devtools.adb_key";
15957dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
15965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDevToolsDisabled[] = "devtools.disabled";
15975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
15984e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// Determines whether devtools should be discovering usb devices for
15994e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// remote debugging at chrome://inspect.
16004e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)const char kDevToolsDiscoverUsbDevicesEnabled[] =
16014e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    "devtools.discover_usb_devices";
16024e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
16035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Maps of files edited locally using DevTools.
16045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDevToolsEditedFiles[] = "devtools.edited_files";
16055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16062a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// List of file system paths added in DevTools.
16072a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kDevToolsFileSystemPaths[] = "devtools.file_system_paths";
16082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
16095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean specifying whether dev tools window should be opened docked.
16105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDevToolsOpenDocked[] = "devtools.open_docked";
16115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16122385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdoch// A boolean specifying whether port forwarding should be enabled.
16132385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdochconst char kDevToolsPortForwardingEnabled[] =
16142385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdoch    "devtools.port_forwarding_enabled";
16152385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdoch
161658537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// A boolean specifying whether default port forwarding configuration has been
161758537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// set.
161858537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)const char kDevToolsPortForwardingDefaultSet[] =
161958537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)    "devtools.port_forwarding_default_set";
162058537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)
16212385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdoch// A dictionary of port->location pairs for port forwarding.
16222385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdochconst char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config";
16232385ea399aae016c0806a4f9ef3c9cfe3d2a39dfBen Murdoch
16245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_ANDROID)
16255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean specifying whether remote dev tools debugging is enabled.
16265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled";
16275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
16285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1629effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// Boolean indicating that TiclInvalidationService should use GCM channel.
1630effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// False or lack of settings means XMPPPushClient channel.
1631effb81e5f8246d0db0270817048dc992db66e9fbBen Murdochconst char kInvalidationServiceUseGCMChannel[] =
1632effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch    "invalidation_service.use_gcm_channel";
16335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16341e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// Local hash of authentication password, used for off-line authentication
16351e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)// when on-line authentication is not available.
16361e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)const char kGoogleServicesPasswordHash[] = "google.services.password_hash";
16371e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)
16385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if !defined(OS_ANDROID)
1639bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdoch// Tracks the number of times that we have shown the sign in promo at startup.
1640bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdochconst char kSignInPromoStartupCount[] = "sync_promo.startup_count";
16415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1642bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdoch// Boolean tracking whether the user chose to skip the sign in promo.
1643bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdochconst char kSignInPromoUserSkipped[] = "sync_promo.user_skipped";
16445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1645bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdoch// Boolean that specifies if the sign in promo is allowed to show on first run.
16465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// This preference is specified in the master preference file to suppress the
1647bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdoch// sign in promo for some installations.
1648bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdochconst char kSignInPromoShowOnFirstRunAllowed[] =
16495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "sync_promo.show_on_first_run_allowed";
16505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies if we should show a bubble in the new tab page.
16525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The bubble is used to confirm that the user is signed into sync.
1653bb1529ce867d8845a77ec7cdf3e3003ef1771a40Ben Murdochconst char kSignInPromoShowNTPBubble[] = "sync_promo.show_ntp_bubble";
16545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
16555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Create web application shortcut dialog preferences.
16575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop";
16585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu";
16595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kWebAppCreateInQuickLaunchBar[] =
16605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.web_app.create_in_quick_launch_bar";
16615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Dictionary that maps Geolocation network provider server URLs to
16635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// corresponding access token.
16645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kGeolocationAccessToken[] = "geolocation.access_token";
16655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that indicates whether to allow firewall traversal while trying to
16675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// establish the initial connection from the client or host.
16685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRemoteAccessHostFirewallTraversal[] =
16695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "remote_access.host_firewall_traversal";
16705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean controlling whether 2-factor auth should be required when connecting
16725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// to a host (instead of a PIN).
16735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRemoteAccessHostRequireTwoFactor[] =
16745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "remote_access.host_require_two_factor";
16755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String containing the domain name that hosts must belong to. If blank, then
16775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// hosts can belong to any domain.
16785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRemoteAccessHostDomain[] = "remote_access.host_domain";
16795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String containing the domain name of the Chromoting Directory.
16815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Used by Chromoting host and client.
16825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRemoteAccessHostTalkGadgetPrefix[] =
16835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "remote_access.host_talkgadget_prefix";
16845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
16855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean controlling whether curtaining is required when connecting to a host.
16865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRemoteAccessHostRequireCurtain[] =
16875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "remote_access.host_require_curtain";
16885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1689a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)// Boolean controlling whether curtaining is required when connecting to a host.
1690a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)const char kRemoteAccessHostAllowClientPairing[] =
1691a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)    "remote_access.host_allow_client_pairing";
1692a36e5920737c6adbddd3e43b760e5de8431db6e0Torne (Richard Coles)
1693a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)// Whether Chrome Remote Desktop can proxy gnubby authentication traffic.
1694a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)const char kRemoteAccessHostAllowGnubbyAuth[] =
1695a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)    "remote_access.host_allow_gnubby_auth";
1696a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
16975c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// Boolean that indicates whether the Chromoting host should allow connections
16985c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// using relay servers.
16995c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liuconst char kRemoteAccessHostAllowRelayedConnection[] =
17005c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu    "remote_access.host_allow_relayed_connection";
17015c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu
17025c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// String containing the UDP port range that the Chromoting host should used
17035c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// when connecting to clients. The port range should be in the form:
17045c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// <min_port>-<max_port>. E.g. 12400-12409.
17055c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liuconst char kRemoteAccessHostUdpPortRange[] =
17065c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu    "remote_access.host_udp_port_range";
17075c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu
17085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The last used printer and its settings.
17095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPrintPreviewStickySettings[] =
17105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "printing.print_preview_sticky_settings";
17115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The last requested size of the dialog as it was closed.
17135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width";
17145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height";
17155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintSigninDialogWidth[] =
17165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "cloud_print.signin_dialog_size.width";
17175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintSigninDialogHeight[] =
17185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "cloud_print.signin_dialog_size.height";
17195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The list of BackgroundContents that should be loaded when the browser
17215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// launches.
17225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRegisteredBackgroundContents[] = "background_contents.registered";
17235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if !defined(OS_ANDROID)
17255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An int that stores how often we've shown the "Chrome is configured to
17265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// auto-launch" infobar.
17275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar";
17285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
17295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String that lists supported HTTP authentication schemes.
17315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAuthSchemes[] = "auth.schemes";
17325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to disable CNAME lookups when generating
17345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Kerberos SPN.
17355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDisableAuthNegotiateCnameLookup[] =
17365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "auth.disable_negotiate_cname_lookup";
17375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to include the port in a generated Kerberos
17395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// SPN.
17405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port";
17415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whitelist containing servers for which Integrated Authentication is enabled.
17435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAuthServerWhitelist[] = "auth.server_whitelist";
17445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whitelist containing servers Chrome is allowed to do Kerberos delegation
17465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// with.
17475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAuthNegotiateDelegateWhitelist[] =
17485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "auth.negotiate_delegate_whitelist";
17495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String that specifies the name of a custom GSSAPI library to load.
17515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kGSSAPILibraryName[] = "auth.gssapi_library_name";
17525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Boolean that specifies whether to allow basic auth prompting on cross-
17545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// domain sub-content requests.
17555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt";
17565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
17572a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Boolean that specifies whether the built-in asynchronous DNS client is used.
17582a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kBuiltInDnsClientEnabled[] = "async_dns.enabled";
17592a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
176090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// A pref holding the value of the policy used to explicitly allow or deny
176190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// access to audio capture devices.  When enabled or not set, the user is
176290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// prompted for device access.  When disabled, access to audio capture devices
176390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// is not allowed and no prompt will be shown.
176490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// See also kAudioCaptureAllowedUrls.
17652a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kAudioCaptureAllowed[] = "hardware.audio_capture_enabled";
176690dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// Holds URL patterns that specify URLs that will be granted access to audio
176790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// capture devices without prompt.  NOTE: This whitelist is currently only
176890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// supported when running in kiosk mode.
176990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// TODO(tommi): Update comment when this is supported for all modes.
177090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)const char kAudioCaptureAllowedUrls[] = "hardware.audio_capture_allowed_urls";
177190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)
177290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// A pref holding the value of the policy used to explicitly allow or deny
177390dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// access to video capture devices.  When enabled or not set, the user is
177490dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// prompted for device access.  When disabled, access to video capture devices
177590dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// is not allowed and no prompt will be shown.
17762a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kVideoCaptureAllowed[] = "hardware.video_capture_enabled";
177790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// Holds URL patterns that specify URLs that will be granted access to video
177890dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// capture devices without prompt.  NOTE: This whitelist is currently only
177990dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// supported when running in kiosk mode.
178090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// TODO(tommi): Update comment when this is supported for all modes.
178190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)const char kVideoCaptureAllowedUrls[] = "hardware.video_capture_allowed_urls";
17822a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
17838bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// A boolean pref that controls the enabled-state of hotword search voice
17848bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// trigger.
1785c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdochconst char kHotwordSearchEnabled[] = "hotword.search_enabled_2";
17868bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)
17876e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// A boolean pref that controls the enabled-state of hotword search voice
17886e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// trigger from any screen.
17896e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kHotwordAlwaysOnSearchEnabled[] = "hotword.always_on_search_enabled";
17906e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
1791effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// A boolean pref that controls whether the sound of "Ok, Google" plus a few
1792effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// seconds of audio data before is sent back to improve voice search.
1793effb81e5f8246d0db0270817048dc992db66e9fbBen Murdochconst char kHotwordAudioLoggingEnabled[] = "hotword.audio_logging_enabled";
1794effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch
17956d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// A string holding the locale information under which Hotword was installed.
17966d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// It is used for comparison since the hotword voice search trigger must be
17976d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// reinstalled to handle a new language.
17986d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)const char kHotwordPreviousLanguage[] = "hotword.previous_language";
17996d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
180068043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)#if defined(OS_ANDROID)
180168043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// Boolean that controls the global enabled-state of protected media identifier.
180268043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)const char kProtectedMediaIdentifierEnabled[] =
180368043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)    "protected_media_identifier.enabled";
180468043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)#endif
180568043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)
18065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#if defined(OS_CHROMEOS)
18075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Dictionary for transient storage of settings that should go into device
18085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// settings storage before owner has been assigned.
18095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeviceSettingsCache[] = "signed_settings_cache";
18105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The hardware keyboard layout of the device. This should look like
18125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// "xkb:us::eng".
18135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard";
18145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An integer pref which shows number of times carrier deal promo
18165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// notification has been shown to user.
18175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCarrierDealPromoShown[] =
18185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "settings.internet.mobile.carrier_deal_promo_shown";
18195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean pref of the auto-enrollment decision. Its value is only valid if
18215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// it's not the default value; otherwise, no auto-enrollment decision has been
18225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// made yet.
18235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShouldAutoEnroll[] = "ShouldAutoEnroll";
18245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An integer pref with the maximum number of bits used by the client in a
18265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// previous auto-enrollment request. If the client goes through an auto update
18275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// during OOBE and reboots into a version of the OS with a larger maximum
18285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// modulus, then it will retry auto-enrollment using the updated value.
18295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit";
18305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The local state pref that stores device activity times before reporting
18325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// them to the policy server.
18335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeviceActivityTimes[] = "device_status.activity_times";
18345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A pref holding the last known location when device location reporting is
18365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// enabled.
18375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDeviceLocation[] = "device_status.location";
18385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A pref holding the value of the policy used to disable mounting of external
18405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// storage for the user.
18415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kExternalStorageDisabled[] = "hardware.external_storage_disabled";
18425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A pref holding the value of the policy used to disable playing audio on
18445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// ChromeOS devices. This pref overrides |kAudioMute| but does not overwrite
18455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// it, therefore when the policy is lifted the original mute state is restored.
18465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kAudioOutputAllowed[] = "hardware.audio_output_enabled";
18475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A dictionary that maps usernames to wallpaper properties.
18495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUsersWallpaperInfo[] = "user_wallpaper_info";
18505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Copy of owner swap mouse buttons option to use on login screen.
18525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right";
18535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
18545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Copy of owner tap-to-click option to use on login screen.
18555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click";
18562a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
18572a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// The length of device uptime after which an automatic reboot is scheduled,
18582a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// expressed in seconds.
18592a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kUptimeLimit[] = "automatic_reboot.uptime_limit";
18602a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
18612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Whether an automatic reboot should be scheduled when an update has been
18622a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// applied and a reboot is required to complete the update process.
18632a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kRebootAfterUpdate[] = "automatic_reboot.reboot_after_update";
1864c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
1865c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// An any-api scoped refresh token for enterprise-enrolled devices.  Allows
1866c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// for connection to Google APIs when the user isn't logged in.  Currently used
1867c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// for for getting a cloudprint scoped token to allow printing in Guest mode,
1868c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Public Accounts and kiosks.
1869c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kDeviceRobotAnyApiRefreshToken[] =
1870c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    "device_robot_refresh_token.any-api";
1871868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
1872868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// Device requisition for enterprise enrollment.
1873868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition";
1874868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
1875868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// Whether to automatically start the enterprise enrollment step during OOBE.
1876868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start";
1877868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
1878868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// Whether the user may exit enrollment.
1879868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit";
1880a3f7b4e666c476898878fa745f637129375cd889Ben Murdoch
1881cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// How many times HID detection OOBE dialog was shown.
1882cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)const char kTimesHIDDialogShown[] = "HIDDialog.shown_how_many_times";
1883cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)
1884a3f7b4e666c476898878fa745f637129375cd889Ben Murdoch// Dictionary of per-user Least Recently Used input method (used at login
1885a3f7b4e666c476898878fa745f637129375cd889Ben Murdoch// screen).
1886a3f7b4e666c476898878fa745f637129375cd889Ben Murdochextern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod";
1887424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)
1888424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)// A dictionary pref of the echo offer check flag. It sets offer info when
1889424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)// an offer is checked.
1890424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)extern const char kEchoCheckedOffers[] = "EchoCheckedOffers";
189168043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)
189268043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// Key name of a dictionary in local state to store cached multiprofle user
189368043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)// behavior policy value.
189468043e1e95eeb07d5cae7aca370b26518b0867d6Torne (Richard Coles)const char kCachedMultiProfileUserBehavior[] = "CachedMultiProfileUserBehavior";
18950f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)
18960f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// A string pref with initial locale set in VPD or manifest.
18970f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)const char kInitialLocale[] = "intl.initial_locale";
18980f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)
18990f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// A boolean pref of the OOBE complete flag (first OOBE part before login).
19000f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)const char kOobeComplete[] = "OobeComplete";
19010f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)
1902cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// The name of the screen that has to be shown if OOBE has been interrupted.
1903cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)const char kOobeScreenPending[] = "OobeScreenPending";
1904cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)
19050f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// A boolean pref of the device registered flag (second part after first login).
19060f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)const char kDeviceRegistered[] = "DeviceRegistered";
19070f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)
1908116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Boolean pref to signal corrupted enrollment to force the device through
1909116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// enrollment recovery flow upon next boot.
1910116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired";
1911116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
19125d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// List of usernames that used certificates pushed by policy before.
19135d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// This is used to prevent these users from joining multiprofile sessions.
19145d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kUsedPolicyCertificates[] = "policy.used_policy_certificates";
19155d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
1916a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)// A dictionary containing server-provided device state pulled form the cloud
1917a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)// after recovery.
1918a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)const char kServerBackedDeviceState[] = "server_backed_device_state";
1919a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
19200529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// Customized wallpaper URL, which is already downloaded and scaled.
19210529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// The URL from this preference must never be fetched. It is compared to the
19220529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// URL from customization document to check if wallpaper URL has changed
19230529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch// since wallpaper was cached.
19240529e5d033099cbfc42635f6f6183833b09dff6eBen Murdochconst char kCustomizationDefaultWallpaperURL[] =
19250529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch    "customization.default_wallpaper_url";
192646d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
192746d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// System uptime, when last logout started.
192846d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// This is saved to file and cleared after chrome process starts.
192946d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)const char kLogoutStartedLast[] = "chromeos.logout-started";
19305f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)
19316e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// An integer pref of the current consumer management enrollment state. The
19326e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// meaning of the value is defined in the enum EnrollmentState in:
19336e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)//   chrome/browser/chromeos/policy/consumer_management_service.h
19346e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kConsumerManagementEnrollmentState[] =
19356e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    "consumer_management.enrollment_state";
19365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
19375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
19385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether there is a Flash version installed that supports clearing LSO data.
19395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
19405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
19415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether we should show Pepper Flash-specific settings.
19425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kPepperFlashSettingsEnabled[] =
19435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "browser.pepper_flash_settings_enabled";
19445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
19455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String which specifies where to store the disk cache.
19465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDiskCacheDir[] = "browser.disk_cache_dir";
19475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Pref name for the policy specifying the maximal cache size.
19485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDiskCacheSize[] = "browser.disk_cache_size";
19495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Pref name for the policy specifying the maximal media cache size.
19505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMediaCacheSize[] = "browser.media_cache_size";
19515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
19525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Specifies the release channel that the device should be locked to.
19535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Possible values: "stable-channel", "beta-channel", "dev-channel", or an
19545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// empty string, in which case the value will be ignored.
19555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// TODO(dubroy): This preference may not be necessary once
19565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// http://crosbug.com/17015 is implemented and the update engine can just
19575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// fetch the correct value from the policy.
19585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel";
19595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1960558790d6acca3451cf3a6b497803a5f07d0bec58Ben Murdochconst char kPerformanceTracingEnabled[] =
1961558790d6acca3451cf3a6b497803a5f07d0bec58Ben Murdoch    "feedback.performance_tracing_enabled";
1962558790d6acca3451cf3a6b497803a5f07d0bec58Ben Murdoch
1963cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// Boolean indicating whether tabstrip uses stacked layout (on touch devices).
1964cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// Defaults to false.
1965cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)const char kTabStripStackedLayout[] = "tab-strip-stacked-layout";
19665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1967effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// Indicates that factory reset was requested from options page or reset screen.
19685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kFactoryResetRequested[] = "FactoryResetRequested";
19695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1970effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// Indicates that rollback was requested alongside with factory reset.
1971effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// Makes sense only if kFactoryResetRequested is true.
1972effb81e5f8246d0db0270817048dc992db66e9fbBen Murdochconst char kRollbackRequested[] = "RollbackRequested";
1973effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch
1974eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch// Boolean recording whether we have showed a balloon that calls out the message
1975eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch// center for desktop notifications.
1976eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdochconst char kMessageCenterShowedFirstRunBalloon[] =
1977eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch    "message_center.showed_first_run_balloon";
1978eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch
19795c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// Boolean recording whether the user has disabled the notifications
19805c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// menubar or systray icon.
19815c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liuconst char kMessageCenterShowIcon[] = "message_center.show_icon";
19825c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu
19835c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liuconst char kMessageCenterForcedOnTaskbar[] =
19845c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu    "message_center.was_forced_on_taskbar";
19855c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu
19865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// *************** SERVICE PREFS ***************
19875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// These are attached to the service process.
19885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
19895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintRoot[] = "cloud_print";
19905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintProxyEnabled[] = "cloud_print.enabled";
19915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The unique id for this instance of the cloud print proxy.
19925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintProxyId[] = "cloud_print.proxy_id";
19935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The GAIA auth token for Cloud Print
19945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintAuthToken[] = "cloud_print.auth_token";
19955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The GAIA auth token used by Cloud Print to authenticate with the XMPP server
19965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// This should eventually go away because the above token should work for both.
19975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintXMPPAuthToken[] = "cloud_print.xmpp_auth_token";
19985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The email address of the account used to authenticate with the Cloud Print
19995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// server.
20005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintEmail[] = "cloud_print.email";
20015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Settings specific to underlying print system.
20025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintPrintSystemSettings[] =
20035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "cloud_print.print_system_settings";
20045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean indicating whether we should poll for print jobs when don't have
20055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// an XMPP connection (false by default).
20065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll";
20075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token";
20085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintRobotEmail[] = "cloud_print.robot_email";
20095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean indicating whether we should connect to cloud print new printers.
2010c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kCloudPrintConnectNewPrinters[] =
2011c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    "cloud_print.user_settings.connectNewPrinters";
20125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean indicating whether we should ping XMPP connection.
20135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintXmppPingEnabled[] = "cloud_print.xmpp_ping_enabled";
20145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// An int value indicating the average timeout between xmpp pings.
20155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintXmppPingTimeout[] = "cloud_print.xmpp_ping_timeout_sec";
2016c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Dictionary with settings stored by connector setup page.
2017c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kCloudPrintUserSettings[] = "cloud_print.user_settings";
2018c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// List of printers settings.
2019c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)extern const char kCloudPrintPrinters[] = "cloud_print.user_settings.printers";
20205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A boolean indicating whether submitting jobs to Google Cloud Print is
20215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// blocked by policy.
20225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled";
20235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
20245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Preference to store proxy settings.
20255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kProxy[] = "proxy";
20265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy";
20275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
20285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Preferences that are exclusively used to store managed values for default
20295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// content settings.
20305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultCookiesSetting[] =
20315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.cookies";
20325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultImagesSetting[] =
20335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.images";
20345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultJavaScriptSetting[] =
20355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.javascript";
20365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultPluginsSetting[] =
20375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.plugins";
20385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultPopupsSetting[] =
20395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.popups";
20405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultGeolocationSetting[] =
20415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.geolocation";
20425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultNotificationsSetting[] =
20435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.notifications";
20445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedDefaultMediaStreamSetting[] =
20455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_default_content_settings.media_stream";
20465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
20475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Preferences that are exclusively used to store managed
20485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// content settings patterns.
20495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedCookiesAllowedForUrls[] =
20505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_cookies_allowed_for_urls";
20515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedCookiesBlockedForUrls[] =
20525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_cookies_blocked_for_urls";
20535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedCookiesSessionOnlyForUrls[] =
20545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_cookies_sessiononly_for_urls";
20555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedImagesAllowedForUrls[] =
20565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_images_allowed_for_urls";
20575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedImagesBlockedForUrls[] =
20585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_images_blocked_for_urls";
20595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedJavaScriptAllowedForUrls[] =
20605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_javascript_allowed_for_urls";
20615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedJavaScriptBlockedForUrls[] =
20625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_javascript_blocked_for_urls";
20635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedPluginsAllowedForUrls[] =
20645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_plugins_allowed_for_urls";
20655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedPluginsBlockedForUrls[] =
20665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_plugins_blocked_for_urls";
20675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedPopupsAllowedForUrls[] =
20685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_popups_allowed_for_urls";
20695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedPopupsBlockedForUrls[] =
20705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_popups_blocked_for_urls";
20715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedNotificationsAllowedForUrls[] =
20725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_notifications_allowed_for_urls";
20735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedNotificationsBlockedForUrls[] =
20745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_notifications_blocked_for_urls";
20755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kManagedAutoSelectCertificateForUrls[] =
20765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "profile.managed_auto_select_certificate_for_urls";
20775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2078c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)#if defined(OS_MACOSX)
20795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Set to true if the user removed our login item so we should not create a new
20805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// one when uninstalling background apps.
20815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item";
20825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2083c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Set to true if Chrome already created a login item, so there's no need to
2084c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// create another one.
2085c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kChromeCreatedLoginItem[] =
2086c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  "background_mode.chrome_created_login_item";
2087c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
2088c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Set to true once we've initialized kChromeCreatedLoginItem for the first
2089c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// time.
2090c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kMigratedLoginItemPref[] =
2091c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  "background_mode.migrated_login_item_pref";
20925c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu
20935c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// A boolean that tracks whether to show a notification when trying to quit
20945c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu// while there are apps running.
20955c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liuconst char kNotifyWhenAppsKeepChromeAlive[] =
20965c02ac1a9c1b504631c0a3d2b6e737b5d738bae1Bo Liu    "apps.notify-when-apps-keep-chrome-alive";
2097c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)#endif
2098c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
20995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Set to true if background mode is enabled on this browser.
21005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kBackgroundModeEnabled[] = "background_mode.enabled";
21015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
21022a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Set to true if hardware acceleration mode is enabled on this browser.
21032a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kHardwareAccelerationModeEnabled[] =
21042a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  "hardware_acceleration_mode.enabled";
21052a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2106c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// Hardware acceleration mode from previous browser launch.
2107c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kHardwareAccelerationModePrevious[] =
2108c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  "hardware_acceleration_mode_previous";
2109c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
21105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List of protocol handlers.
21115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kRegisteredProtocolHandlers[] =
21125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  "custom_handlers.registered_protocol_handlers";
21135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
21145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// List of protocol handlers the user has requested not to be asked about again.
21155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kIgnoredProtocolHandlers[] =
21165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  "custom_handlers.ignored_protocol_handlers";
21175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
211846d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// List of protocol handlers registered by policy.
211946d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)const char kPolicyRegisteredProtocolHandlers[] =
212046d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)    "custom_handlers.policy.registered_protocol_handlers";
212146d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
212246d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// List of protocol handlers the policy has requested to be ignored.
212346d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)const char kPolicyIgnoredProtocolHandlers[] =
212446d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)    "custom_handlers.policy.ignored_protocol_handlers";
212546d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
21265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Whether user-specified handlers for protocols and content types can be
21275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// specified.
21285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
21295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
21308bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// Integer that specifies the policy refresh rate for device-policy in
21315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// milliseconds. Not all values are meaningful, so it is clamped to a sane range
21325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// by the cloud policy subsystem.
21335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
21345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2135effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// A boolean where true means that the browser has previously attempted to
2136effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// enable autoupdate and failed, so the next out-of-date browser start should
2137effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// not prompt the user to enable autoupdate, it should offer to reinstall Chrome
2138effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch// instead.
2139effb81e5f8246d0db0270817048dc992db66e9fbBen Murdochconst char kAttemptedToEnableAutoupdate[] =
2140effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch    "browser.attempted_to_enable_autoupdate";
2141effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch
21425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// The next media gallery ID to assign.
21435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id";
21445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
21455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A list of dictionaries, where each dictionary represents a known media
21465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// gallery.
21475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMediaGalleriesRememberedGalleries[] =
21485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "media_galleries.remembered_galleries";
21495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
21505d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// The last time a media scan completed.
21515d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time";
21525d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
21532a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(USE_ASH)
21545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// |kShelfAlignment| and |kShelfAutoHideBehavior| have a local variant. The
21555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// local variant is not synced and is used if set. If the local variant is not
21565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// set its value is set from the synced value (once prefs have been
21575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// synced). This gives a per-machine setting that is initialized from the last
21585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// set value.
21592a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// These values are default on the machine but can be overridden by per-display
21602a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// values in kShelfPreferences (unless overridden by managed policy).
21615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String value corresponding to ash::Shell::ShelfAlignment.
21625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShelfAlignment[] = "shelf_alignment";
21635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShelfAlignmentLocal[] = "shelf_alignment_local";
21645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// String value corresponding to ash::Shell::ShelfAutoHideBehavior.
21655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShelfAutoHideBehavior[] = "auto_hide_behavior";
21665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kShelfAutoHideBehaviorLocal[] = "auto_hide_behavior_local";
216790dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// This value stores chrome icon's index in the launcher. This should be handled
2168f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)// separately with app shortcut's index because of ShelfModel's backward
2169cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)// compatibility. If we add chrome icon index to |kPinnedLauncherApps|, its
217090dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// index is also stored in the |kPinnedLauncherApp| pref. It may causes
217190dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)// creating two chrome icons.
217290dce4d38c5ff5333bea97d859d4e484e27edf0cTorne (Richard Coles)const char kShelfChromeIconIndex[] = "shelf_chrome_icon_index";
21732a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Dictionary value that holds per-display preference of shelf alignment and
21742a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// auto-hide behavior. Key of the dictionary is the id of the display, and
21752a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// its value is a dictionary whose keys are kShelfAlignment and
21762a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// kShelfAutoHideBehavior.
21772a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kShelfPreferences[] = "shelf_preferences";
21785d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
21795d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Integer value in milliseconds indicating the length of time for which a
21805d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// confirmation dialog should be shown when the user presses the logout button.
21815d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// A value of 0 indicates that logout should happen immediately, without showing
21825d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// a confirmation dialog.
21835d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kLogoutDialogDurationMs[] = "logout_dialog_duration_ms";
21845d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kPinnedLauncherApps[] = "pinned_launcher_apps";
21855d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Boolean value indicating whether to show a logout button in the ash tray.
21865d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray";
21872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
21885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
21892a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(USE_AURA)
21902a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Tuning settings for gestures.
21915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kMaxSeparationForGestureTouchesInPixels[] =
21925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "gesture.max_separation_for_gesture_touches_in_pixels";
21935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kSemiLongPressTimeInSeconds[] =
21945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "gesture.semi_long_press_time_in_seconds";
21952a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kTabScrubActivationDelayInMS[] =
21962a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "gesture.tab_scrub_activation_delay_in_ms";
21972a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingAccelerationCurveCoefficient0[] =
21982a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "gesture.fling_acceleration_curve_coefficient_0";
21992a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingAccelerationCurveCoefficient1[] =
22002a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "gesture.fling_acceleration_curve_coefficient_1";
22012a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingAccelerationCurveCoefficient2[] =
22022a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "gesture.fling_acceleration_curve_coefficient_2";
22032a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingAccelerationCurveCoefficient3[] =
22042a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "gesture.fling_acceleration_curve_coefficient_3";
22052a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingCurveTouchpadAlpha[] = "flingcurve.touchpad_alpha";
22062a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingCurveTouchpadBeta[] = "flingcurve.touchpad_beta";
22072a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingCurveTouchpadGamma[] = "flingcurve.touchpad_gamma";
22082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingCurveTouchscreenAlpha[] = "flingcurve.touchscreen_alpha";
22092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingCurveTouchscreenBeta[] = "flingcurve.touchscreen_beta";
22102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingCurveTouchscreenGamma[] = "flingcurve.touchscreen_gamma";
22112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingMaxCancelToDownTimeInMs[] =
22122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "gesture.fling_max_cancel_to_down_time_in_ms";
22132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kFlingMaxTapGapTimeInMs[] =
22142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "gesture.fling_max_tap_gap_time_in_ms";
22152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kOverscrollHorizontalThresholdComplete[] =
22162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "overscroll.horizontal_threshold_complete";
22172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kOverscrollVerticalThresholdComplete[] =
22182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "overscroll.vertical_threshold_complete";
22192a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kOverscrollMinimumThresholdStart[] =
22202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "overscroll.minimum_threshold_start";
2221424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)const char kOverscrollMinimumThresholdStartTouchpad[] =
2222424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)    "overscroll.minimum_threshold_start_touchpad";
222358e6fbe4ee35d65e14b626c557d37565bf8ad179Ben Murdochconst char kOverscrollVerticalThresholdStart[] =
222458e6fbe4ee35d65e14b626c557d37565bf8ad179Ben Murdoch    "overscroll.vertical_threshold_start";
22252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kOverscrollHorizontalResistThreshold[] =
22262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "overscroll.horizontal_resist_threshold";
22272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kOverscrollVerticalResistThreshold[] =
22282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    "overscroll.vertical_resist_threshold";
22295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif
22305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
22315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Counts how many more times the 'profile on a network share' warning should be
22325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// shown to the user before the next silence period.
22335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
22345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Tracks the time of the last shown warning. Used to reset
22355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// |network_profile.warnings_left| after a silence period.
22365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)const char kNetworkProfileLastWarningTime[] =
22375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    "network_profile.last_warning_time";
22385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
22392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(OS_CHROMEOS)
22402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// The RLZ brand code, if enabled.
22412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kRLZBrand[] = "rlz.brand";
22422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Whether RLZ pings are disabled.
22432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const char kRLZDisabled[] = "rlz.disabled";
22442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
22452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
22464e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)#if defined(ENABLE_APP_LIST)
22472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// The directory in user data dir that contains the profile to be used with the
22482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// app launcher.
22495d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kAppListProfile[] = "app_list.profile";
22502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2251c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// The number of times the app launcher was launched since last ping and
2252c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// the time of the last ping.
22535d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kAppListLaunchCount[] = "app_list.launch_count";
22545d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kLastAppListLaunchPing[] = "app_list.last_launch_ping";
2255c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
2256c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// The number of times the an app was launched from the app launcher since last
2257c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// ping and the time of the last ping.
22585d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kAppListAppLaunchCount[] = "app_list.app_launch_count";
22595d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2260c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
22614e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// A boolean that tracks whether the user has ever enabled the app launcher.
22624e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)const char kAppLauncherHasBeenEnabled[] =
22634e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    "apps.app_launcher.has_been_enabled";
22644e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
22655d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// An enum indicating how the app launcher was enabled. E.g., via webstore, app
22665d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// install, command line, etc. For UMA.
22675d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kAppListEnableMethod[] = "app_list.how_enabled";
22685d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
22695d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// The time that the app launcher was enabled. Cleared when UMA is recorded.
22705d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kAppListEnableTime[] = "app_list.when_enabled";
22715d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
22724e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// TODO(calamity): remove this pref since app launcher will always be
22734e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// installed.
22744e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// Local state caching knowledge of whether the app launcher is installed.
22754e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)const char kAppLauncherIsEnabled[] =
22764e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    "apps.app_launcher.should_show_apps_page";
22774e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
22784e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// Integer representing the version of the app launcher shortcut installed on
22794e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// the system. Incremented, e.g., when embedded icons change.
22804e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version";
22814e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
22824e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// A boolean identifying if we should show the app launcher promo or not.
22834e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)const char kShowAppLauncherPromo[] = "app_launcher.show_promo";
22846d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)
22856d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// A dictionary that tracks the Drive app to Chrome app mapping. The key is
22866d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// a Drive app id and the value is the corresponding Chrome app id. The pref
22876d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)// is unsynable and used to track local mappings only.
22886d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)const char kAppLauncherDriveAppMapping[] =
22896d86b77056ed63eb6871182f42a9fd5f07550f90Torne (Richard Coles)    "apps.app_launcher.drive_app_mapping";
22904e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)#endif
22914e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
22924e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// If set, the user requested to launch the app with this extension id while
22934e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// in Metro mode, and then relaunched to Desktop mode to start it.
22944e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart";
22954e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
22964e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers
22974e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)// launch of the specified app when restarting Chrome in desktop mode.
22984e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)const char kAppLaunchForMetroRestartProfile[] =
22994e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)    "apps.app_launch_for_metro_restart_profile";
23004e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
230146d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// An integer that is incremented whenever changes are made to app shortcuts.
230246d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)// Increasing this causes all app shortcuts to be recreated.
230346d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)const char kAppShortcutsVersion[] = "apps.shortcuts_version";
23044e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)
2305868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)// How often the bubble has been shown.
2306868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2307868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
2308c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)// A string pref for storing the salt used to compute the pepper device ID.
2309c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kDRMSalt[] = "settings.privacy.drm_salt";
231058537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// A boolean pref that enables the (private) pepper GetDeviceID() call and
231158537e28ecd584eab876aee8be7156509866d23aTorne (Richard Coles)// enables the use of remote attestation for content protection.
2312c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)const char kEnableDRM[] = "settings.privacy.drm_enabled";
2313c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)
23145d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// An integer per-profile pref that signals if the watchdog extension is
23153551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)// installed and active. We need to know if the watchdog extension active for
23163551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)// ActivityLog initialization before the extension system is initialized.
23173551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)const char kWatchdogExtensionActive[] =
23185d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    "profile.extensions.activity_log.num_consumers_active";
23195d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// The old version was a bool.
23205d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kWatchdogExtensionActiveOld[] =
23213551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)    "profile.extensions.activity_log.watchdog_extension_active";
23223551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)
23230f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)#if defined(OS_ANDROID)
23240f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// A list of partner bookmark rename/remove mappings.
23250f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// Each list item is a dictionary containing a "url", a "provider_title" and
23260f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// "mapped_title" entries, detailing the bookmark target URL (if any), the title
23270f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// given by the PartnerBookmarksProvider and either the user-visible renamed
23280f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)// title or an empty string if the bookmark node was removed.
23290f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
23300f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)#endif
23310f1bc08d4cfcc34181b0b5cbf065c40f687bf740Torne (Richard Coles)
23325d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// Whether DNS Quick Check is disabled in proxy resolution.
23335d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
233423730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
23356e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Whether Guest Mode is enabled within the browser.
23366e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
23376e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
23385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)}  // namespace prefs
2339