Chromium Code Reviews| 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/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 1838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1849 | 1849 |
| 1850 // System uptime, when last logout started. | 1850 // System uptime, when last logout started. |
| 1851 // This is saved to file and cleared after chrome process starts. | 1851 // This is saved to file and cleared after chrome process starts. |
| 1852 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1852 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
| 1853 | 1853 |
| 1854 // The role of the device in the OOBE bootstrapping process. If it's a "slave" | 1854 // The role of the device in the OOBE bootstrapping process. If it's a "slave" |
| 1855 // device, then it's eligible to be enrolled by a "master" device (which could | 1855 // device, then it's eligible to be enrolled by a "master" device (which could |
| 1856 // be an Android app). | 1856 // be an Android app). |
| 1857 const char kIsBootstrappingSlave[] = "is_oobe_bootstrapping_slave"; | 1857 const char kIsBootstrappingSlave[] = "is_oobe_bootstrapping_slave"; |
| 1858 | 1858 |
| 1859 // A preference that controlles Android status reporting. | 1859 // A preference that controlles Android status reporting. |
|
Thiemo Nagel
2016/10/18 10:12:22
Nit: controlles --> controls
Nit: Also no need to
| |
| 1860 const char kReportArcStatus[] = "arc.status_reporting"; | 1860 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled"; |
| 1861 | 1861 |
| 1862 #endif // defined(OS_CHROMEOS) | 1862 #endif // defined(OS_CHROMEOS) |
| 1863 | 1863 |
| 1864 // Whether there is a Flash version installed that supports clearing LSO data. | 1864 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1865 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1865 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1866 | 1866 |
| 1867 // Whether we should show Pepper Flash-specific settings. | 1867 // Whether we should show Pepper Flash-specific settings. |
| 1868 const char kPepperFlashSettingsEnabled[] = | 1868 const char kPepperFlashSettingsEnabled[] = |
| 1869 "browser.pepper_flash_settings_enabled"; | 1869 "browser.pepper_flash_settings_enabled"; |
| 1870 | 1870 |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2277 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2277 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2278 | 2278 |
| 2279 // A list of origin trial features to disable by policy. | 2279 // A list of origin trial features to disable by policy. |
| 2280 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2280 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2281 | 2281 |
| 2282 // Policy that indicates the state of updates for the binary components. | 2282 // Policy that indicates the state of updates for the binary components. |
| 2283 const char kComponentUpdatesEnabled[] = | 2283 const char kComponentUpdatesEnabled[] = |
| 2284 "component_updates.component_updates_enabled"; | 2284 "component_updates.component_updates_enabled"; |
| 2285 | 2285 |
| 2286 } // namespace prefs | 2286 } // namespace prefs |
| OLD | NEW |