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

Side by Side Diff: components/policy/core/common/policy_switches.cc

Issue 131023004: Moved the --device-management-url switch to the policy component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@BPC-1-split
Patch Set: rebase Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/policy/core/common/policy_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 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 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 12 // to prevent Chrome clients from overwhelming the cloud policy server when a
13 // policy which affects many users is changed. 13 // policy which affects many users is changed.
14 const char kCloudPolicyInvalidationDelay[] = "cloud-policy-invalidation-delay"; 14 const char kCloudPolicyInvalidationDelay[] = "cloud-policy-invalidation-delay";
15 15
16 // Specifies the URL at which to fetch configuration policy from the device
17 // management backend. Specifying this switch turns on managed policy from the
18 // device management backend.
19 const char kDeviceManagementUrl[] = "device-management-url";
20
16 // Disables pushing cloud policy to Chrome using an invalidation service. 21 // Disables pushing cloud policy to Chrome using an invalidation service.
17 const char kDisableCloudPolicyPush[] = "disable-cloud-policy-push"; 22 const char kDisableCloudPolicyPush[] = "disable-cloud-policy-push";
18 23
19 // Enables fetching and storing cloud policy for components. 24 // Enables fetching and storing cloud policy for components.
20 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; 25 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy";
21 26
22 #if defined(OS_ANDROID) || defined(OS_IOS) 27 #if defined(OS_ANDROID) || defined(OS_IOS)
23 // Registers for cloud policy using the BROWSER client type instead of the 28 // Registers for cloud policy using the BROWSER client type instead of the
24 // ANDROID_BROWSER or IOS_BROWSER types. 29 // ANDROID_BROWSER or IOS_BROWSER types.
25 // This allows skipping the server whitelist. 30 // This allows skipping the server whitelist.
26 // TODO(joaodasilva): remove this. http://crbug.com/248527 31 // TODO(joaodasilva): remove this. http://crbug.com/248527
27 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type"; 32 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type";
28 #endif // defined(OS_ANDROID) || defined(OS_IOS) 33 #endif // defined(OS_ANDROID) || defined(OS_IOS)
29 34
30 } // namespace switches 35 } // namespace switches
31 } // namespace policy 36 } // namespace policy
OLDNEW
« no previous file with comments | « components/policy/core/common/policy_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698