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

Side by Side Diff: chrome/common/pref_names.cc

Issue 2396103002: Create policy ReportArcStatus (Closed)
Patch Set: Fix pref-mapping test Created 4 years, 2 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 11 matching lines...) Expand all
22 const char kArcEnabled[] = "arc.enabled"; 22 const char kArcEnabled[] = "arc.enabled";
23 // A preference to keep user's consent to use location service. 23 // A preference to keep user's consent to use location service.
24 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled"; 24 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled";
25 // A preference to keep list of Android packages and their infomation. 25 // A preference to keep list of Android packages and their infomation.
26 const char kArcPackages[] = "arc.packages"; 26 const char kArcPackages[] = "arc.packages";
27 // A preference to keep deferred requests of setting notifications enabled flag. 27 // A preference to keep deferred requests of setting notifications enabled flag.
28 const char kArcSetNotificationsEnabledDeferred[] = 28 const char kArcSetNotificationsEnabledDeferred[] =
29 "arc.set_notifications_enabled_deferred"; 29 "arc.set_notifications_enabled_deferred";
30 // A preference that indicates status of Android sign-in. 30 // A preference that indicates status of Android sign-in.
31 const char kArcSignedIn[] = "arc.signedin"; 31 const char kArcSignedIn[] = "arc.signedin";
32 // A preference that controlles Android status reporting.
33 const char kReportArcStatus[] = "arc.status_reporting";
32 #endif 34 #endif
33 35
34 // A bool pref that keeps whether the child status for this profile was already 36 // A bool pref that keeps whether the child status for this profile was already
35 // successfully checked via ChildAccountService. 37 // successfully checked via ChildAccountService.
36 const char kChildAccountStatusKnown[] = "child_account_status_known"; 38 const char kChildAccountStatusKnown[] = "child_account_status_known";
37 39
38 // A string property indicating whether default apps should be installed 40 // A string property indicating whether default apps should be installed
39 // in this profile. Use the value "install" to enable defaults apps, or 41 // in this profile. Use the value "install" to enable defaults apps, or
40 // "noinstall" to disable them. This property is usually set in the 42 // "noinstall" to disable them. This property is usually set in the
41 // master_preferences and copied into the profile preferences on first run. 43 // master_preferences and copied into the profile preferences on first run.
(...skipping 2222 matching lines...) Expand 10 before | Expand all | Expand 10 after
2264 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2266 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2265 2267
2266 // A list of origin trial features to disable by policy. 2268 // A list of origin trial features to disable by policy.
2267 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; 2269 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
2268 2270
2269 // Policy that indicates the state of updates for the binary components. 2271 // Policy that indicates the state of updates for the binary components.
2270 const char kComponentUpdatesEnabled[] = 2272 const char kComponentUpdatesEnabled[] =
2271 "component_updates.component_updates_enabled"; 2273 "component_updates.component_updates_enabled";
2272 2274
2273 } // namespace prefs 2275 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698