| OLD | NEW |
| 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 Loading... |
| 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 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2256 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2255 | 2257 |
| 2256 // A list of origin trial features to disable by policy. | 2258 // A list of origin trial features to disable by policy. |
| 2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2259 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2258 | 2260 |
| 2259 // Policy that indicates the state of updates for the binary components. | 2261 // Policy that indicates the state of updates for the binary components. |
| 2260 const char kComponentUpdatesEnabled[] = | 2262 const char kComponentUpdatesEnabled[] = |
| 2261 "component_updates.component_updates_enabled"; | 2263 "component_updates.component_updates_enabled"; |
| 2262 | 2264 |
| 2263 } // namespace prefs | 2265 } // namespace prefs |
| OLD | NEW |