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