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 1865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1876 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1876 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
| 1877 | 1877 |
| 1878 // The role of the device in the OOBE bootstrapping process. If it's a "slave" | 1878 // The role of the device in the OOBE bootstrapping process. If it's a "slave" |
| 1879 // device, then it's eligible to be enrolled by a "master" device (which could | 1879 // device, then it's eligible to be enrolled by a "master" device (which could |
| 1880 // be an Android app). | 1880 // be an Android app). |
| 1881 const char kIsBootstrappingSlave[] = "is_oobe_bootstrapping_slave"; | 1881 const char kIsBootstrappingSlave[] = "is_oobe_bootstrapping_slave"; |
| 1882 | 1882 |
| 1883 // A preference that controlles Android status reporting. | 1883 // A preference that controlles Android status reporting. |
| 1884 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled"; | 1884 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled"; |
| 1885 | 1885 |
| 1886 // Boolean prefs for the local status of the touch screen. | |
| 1887 const char kLocalTouchScreenEnabled[] = "events.local_touch_screen.enabled"; | |
|
Daniel Erat
2016/12/02 21:48:57
it looks like this doesn't match the order from th
Qiang(Joe) Xu
2016/12/02 23:55:11
Done.
| |
| 1888 | |
| 1886 #endif // defined(OS_CHROMEOS) | 1889 #endif // defined(OS_CHROMEOS) |
| 1887 | 1890 |
| 1888 // Whether there is a Flash version installed that supports clearing LSO data. | 1891 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1889 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1892 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1890 | 1893 |
| 1891 // Whether we should show Pepper Flash-specific settings. | 1894 // Whether we should show Pepper Flash-specific settings. |
| 1892 const char kPepperFlashSettingsEnabled[] = | 1895 const char kPepperFlashSettingsEnabled[] = |
| 1893 "browser.pepper_flash_settings_enabled"; | 1896 "browser.pepper_flash_settings_enabled"; |
| 1894 | 1897 |
| 1895 // String which specifies where to store the disk cache. | 1898 // String which specifies where to store the disk cache. |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2329 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = | 2332 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = |
| 2330 "search_geolocation_pre_disclosure_metrics_recorded"; | 2333 "search_geolocation_pre_disclosure_metrics_recorded"; |
| 2331 | 2334 |
| 2332 // Whether the metrics for the state of geolocation post-disclosure being shown | 2335 // Whether the metrics for the state of geolocation post-disclosure being shown |
| 2333 // have been recorded. | 2336 // have been recorded. |
| 2334 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = | 2337 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = |
| 2335 "search_geolocation_post_disclosure_metrics_recorded"; | 2338 "search_geolocation_post_disclosure_metrics_recorded"; |
| 2336 #endif | 2339 #endif |
| 2337 | 2340 |
| 2338 } // namespace prefs | 2341 } // namespace prefs |
| OLD | NEW |