| 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 1830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1841 // System uptime, when last logout started. | 1841 // System uptime, when last logout started. |
| 1842 // This is saved to file and cleared after chrome process starts. | 1842 // This is saved to file and cleared after chrome process starts. |
| 1843 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1843 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
| 1844 | 1844 |
| 1845 // The role of the device in the OOBE bootstrapping process. If it's a "slave" | 1845 // The role of the device in the OOBE bootstrapping process. If it's a "slave" |
| 1846 // device, then it's eligible to be enrolled by a "master" device (which could | 1846 // device, then it's eligible to be enrolled by a "master" device (which could |
| 1847 // be an Android app). | 1847 // be an Android app). |
| 1848 const char kIsBootstrappingSlave[] = "is_oobe_bootstrapping_slave"; | 1848 const char kIsBootstrappingSlave[] = "is_oobe_bootstrapping_slave"; |
| 1849 | 1849 |
| 1850 // A preference that controlles Android status reporting. | 1850 // A preference that controlles Android status reporting. |
| 1851 const char kReportArcStatus[] = "arc.status_reporting"; | 1851 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled"; |
| 1852 | 1852 |
| 1853 #endif // defined(OS_CHROMEOS) | 1853 #endif // defined(OS_CHROMEOS) |
| 1854 | 1854 |
| 1855 // Whether there is a Flash version installed that supports clearing LSO data. | 1855 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1856 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1856 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1857 | 1857 |
| 1858 // Whether we should show Pepper Flash-specific settings. | 1858 // Whether we should show Pepper Flash-specific settings. |
| 1859 const char kPepperFlashSettingsEnabled[] = | 1859 const char kPepperFlashSettingsEnabled[] = |
| 1860 "browser.pepper_flash_settings_enabled"; | 1860 "browser.pepper_flash_settings_enabled"; |
| 1861 | 1861 |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2268 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2268 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2269 | 2269 |
| 2270 // A list of origin trial features to disable by policy. | 2270 // A list of origin trial features to disable by policy. |
| 2271 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2271 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2272 | 2272 |
| 2273 // Policy that indicates the state of updates for the binary components. | 2273 // Policy that indicates the state of updates for the binary components. |
| 2274 const char kComponentUpdatesEnabled[] = | 2274 const char kComponentUpdatesEnabled[] = |
| 2275 "component_updates.component_updates_enabled"; | 2275 "component_updates.component_updates_enabled"; |
| 2276 | 2276 |
| 2277 } // namespace prefs | 2277 } // namespace prefs |
| OLD | NEW |