OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/policy/core/common/policy_switches.h" | 5 #include "components/policy/core/common/policy_switches.h" |
6 | 6 |
7 namespace policy { | 7 namespace policy { |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The maximum amount of delay in ms between receiving a cloud policy | |
11 // invalidation and fetching the policy. A random delay up to this value is used | |
12 // to prevent Chrome clients from overwhelming the cloud policy server when a | |
13 // policy which affects many users is changed. | |
14 const char kCloudPolicyInvalidationDelay[] = "cloud-policy-invalidation-delay"; | |
15 | |
16 // Specifies the URL at which to fetch configuration policy from the device | 10 // Specifies the URL at which to fetch configuration policy from the device |
17 // management backend. | 11 // management backend. |
18 const char kDeviceManagementUrl[] = "device-management-url"; | 12 const char kDeviceManagementUrl[] = "device-management-url"; |
19 | 13 |
20 // Enables fetching and storing cloud policy for components. | 14 // Enables fetching and storing cloud policy for components. |
21 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; | 15 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; |
22 | 16 |
23 // Disables the verification of policy signing keys. | 17 // Disables the verification of policy signing keys. |
24 // TODO(atwilson): Remove this once all test servers have been updated to | 18 // TODO(atwilson): Remove this once all test servers have been updated to |
25 // produce verification signatures. | 19 // produce verification signatures. |
26 const char kDisablePolicyKeyVerification[] = "disable-policy-key-verification"; | 20 const char kDisablePolicyKeyVerification[] = "disable-policy-key-verification"; |
27 | 21 |
28 #if defined(OS_ANDROID) || defined(OS_IOS) | 22 #if defined(OS_ANDROID) || defined(OS_IOS) |
29 // Registers for cloud policy using the BROWSER client type instead of the | 23 // Registers for cloud policy using the BROWSER client type instead of the |
30 // ANDROID_BROWSER or IOS_BROWSER types. | 24 // ANDROID_BROWSER or IOS_BROWSER types. |
31 // This allows skipping the server whitelist. | 25 // This allows skipping the server whitelist. |
32 // TODO(joaodasilva): remove this. http://crbug.com/248527 | 26 // TODO(joaodasilva): remove this. http://crbug.com/248527 |
33 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type"; | 27 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type"; |
34 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 28 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
35 | 29 |
36 } // namespace switches | 30 } // namespace switches |
37 } // namespace policy | 31 } // namespace policy |
OLD | NEW |