diff options
author | fhorschig <fhorschig@chromium.org> | 2014-09-30 05:30:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-30 12:30:41 +0000 |
commit | 1f351f00cc2af54e4fa69c8172abca33ffd1327d (patch) | |
tree | 290e34e22d50096793417636469c16621a6a2f0e /chrome/common/pref_names.cc | |
parent | bb156a0490b0c2cf1ad155ab46fc4afa3fbb77c0 (diff) | |
download | chromium_src-1f351f00cc2af54e4fa69c8172abca33ffd1327d.zip chromium_src-1f351f00cc2af54e4fa69c8172abca33ffd1327d.tar.gz chromium_src-1f351f00cc2af54e4fa69c8172abca33ffd1327d.tar.bz2 |
Stopping the history recording for a supervised user
The custodian will soon be able to stop history recording for each of his supervised users. Reenabling the history for existing supervised user accounts relies on another sync commit of the supervised user (e.g. permission request; alternatively new setup of the supervised user).
BUG=232316
Review URL: https://codereview.chromium.org/480513004
Cr-Commit-Position: refs/heads/master@{#297411}
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 51a65b1..5e2a324 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -891,6 +891,10 @@ const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. const char kForceSafeSearch[] = "settings.force_safesearch"; +// Boolean controlling whether History is recorded and synced for +// supervised users. +const char kRecordHistory[] = "settings.history_recorded"; + #if defined(OS_LINUX) && !defined(OS_CHROMEOS) // Linux specific preference on whether we should match the system theme. const char kUsesSystemTheme[] = "extensions.theme.use_system"; |