Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / components / policy / core / common / policy_pref_names.cc
blobd788866dd033b81b070c1b408f728466a0c6da74
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/policy/core/common/policy_pref_names.h"
7 namespace policy {
8 namespace policy_prefs {
10 // 64-bit serialization of the time last policy usage statistics were collected
11 // by UMA_HISTOGRAM_ENUMERATION.
12 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
14 // Blocks access to the listed host patterns.
15 const char kUrlBlacklist[] = "policy.url_blacklist";
17 // Allows access to the listed host patterns, as exceptions to the blacklist.
18 const char kUrlWhitelist[] = "policy.url_whitelist";
20 // Integer that specifies the policy refresh rate for user-policy in
21 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
22 // by the cloud policy subsystem.
23 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
25 } // namespace policy_prefs
26 } // namespace policy