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