• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4 
5 #include "components/policy/core/common/policy_switches.h"
6 
7 namespace policy {
8 namespace switches {
9 
10 // Specifies the URL at which to fetch configuration policy from the device
11 // management backend.
12 const char kDeviceManagementUrl[]           = "device-management-url";
13 
14 // Disables fetching and storing cloud policy for components.
15 const char kDisableComponentCloudPolicy[]   = "disable-component-cloud-policy";
16 
17 // Always treat user as affiliated.
18 // TODO(antrim): Remove once test servers correctly produce affiliation ids.
19 const char kUserAlwaysAffiliated[]  = "user-always-affiliated";
20 
21 }  // namespace switches
22 }  // namespace policy
23