| 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 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1854 | 1854 |
| 1855 // Indicates that debugging features were requested from oobe screen. | 1855 // Indicates that debugging features were requested from oobe screen. |
| 1856 const char kDebuggingFeaturesRequested[] = "DebuggingFeaturesRequested"; | 1856 const char kDebuggingFeaturesRequested[] = "DebuggingFeaturesRequested"; |
| 1857 | 1857 |
| 1858 #if defined(OS_CHROMEOS) | 1858 #if defined(OS_CHROMEOS) |
| 1859 // This setting starts periodic timezone refresh when not in user session. | 1859 // This setting starts periodic timezone refresh when not in user session. |
| 1860 // (user session is controlled by user profile preference | 1860 // (user session is controlled by user profile preference |
| 1861 // kResolveTimezoneByGeolocation | 1861 // kResolveTimezoneByGeolocation |
| 1862 const char kResolveDeviceTimezoneByGeolocation[] = | 1862 const char kResolveDeviceTimezoneByGeolocation[] = |
| 1863 "settings.resolve_device_timezone_by_geolocation"; | 1863 "settings.resolve_device_timezone_by_geolocation"; |
| 1864 |
| 1865 // This is policy-controlled preference. |
| 1866 // It has values defines by num ResolveDeviceTimezoneByGeolocationPolicyValues. |
| 1867 const char kSystemTimezoneAutomaticDetectionPolicy[] = |
| 1868 "settings.resolve_device_timezone_by_geolocation_policy"; |
| 1864 #endif // defined(OS_CHROMEOS) | 1869 #endif // defined(OS_CHROMEOS) |
| 1865 | 1870 |
| 1866 // *************** SERVICE PREFS *************** | 1871 // *************** SERVICE PREFS *************** |
| 1867 // These are attached to the service process. | 1872 // These are attached to the service process. |
| 1868 | 1873 |
| 1869 const char kCloudPrintRoot[] = "cloud_print"; | 1874 const char kCloudPrintRoot[] = "cloud_print"; |
| 1870 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 1875 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
| 1871 // The unique id for this instance of the cloud print proxy. | 1876 // The unique id for this instance of the cloud print proxy. |
| 1872 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 1877 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
| 1873 // The GAIA auth token for Cloud Print | 1878 // The GAIA auth token for Cloud Print |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2179 const char kMediaRouterEnableCloudServices[] = | 2184 const char kMediaRouterEnableCloudServices[] = |
| 2180 "media_router.cloudservices.enabled"; | 2185 "media_router.cloudservices.enabled"; |
| 2181 #endif // defined(GOOGLE_CHROME_BUILD) | 2186 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2182 // Whether or not the Media Router first run flow has been acknowledged by the | 2187 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2183 // user. | 2188 // user. |
| 2184 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2189 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2185 "media_router.firstrunflow.acknowledged"; | 2190 "media_router.firstrunflow.acknowledged"; |
| 2186 #endif | 2191 #endif |
| 2187 | 2192 |
| 2188 } // namespace prefs | 2193 } // namespace prefs |
| OLD | NEW |