| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1871 | 1871 |
| 1872 // System uptime, when last logout started. | 1872 // System uptime, when last logout started. |
| 1873 // This is saved to file and cleared after chrome process starts. | 1873 // This is saved to file and cleared after chrome process starts. |
| 1874 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1874 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
| 1875 | 1875 |
| 1876 // An integer pref of the current consumer management stage. The meaning of the | 1876 // An integer pref of the current consumer management stage. The meaning of the |
| 1877 // value is defined in: | 1877 // value is defined in: |
| 1878 // chrome/browser/chromeos/policy/consumer_management_stage.h | 1878 // chrome/browser/chromeos/policy/consumer_management_stage.h |
| 1879 const char kConsumerManagementStage[] = "consumer_management.stage"; | 1879 const char kConsumerManagementStage[] = "consumer_management.stage"; |
| 1880 | 1880 |
| 1881 // A boolean pref. If set to true, new experimental OOBE UI is displayed. | |
| 1882 const char kNewOobe[] = "NewOobe"; | |
| 1883 | |
| 1884 // A boolean pref. If set to true, experimental webview based signin flow | 1881 // A boolean pref. If set to true, experimental webview based signin flow |
| 1885 // is deactivated. | 1882 // is deactivated. |
| 1886 const char kWebviewSigninDisabled[] = "webview_signin_disabled"; | 1883 const char kWebviewSigninDisabled[] = "webview_signin_disabled"; |
| 1887 | 1884 |
| 1888 // A boolean pref. If set to true, then on the network screen we should display | 1885 // A boolean pref. If set to true, then on the network screen we should display |
| 1889 // whether the WebView-based sign-in flow is active. | 1886 // whether the WebView-based sign-in flow is active. |
| 1890 const char kNewLoginUIPopup[] = "new_login_ui_popup"; | 1887 const char kNewLoginUIPopup[] = "new_login_ui_popup"; |
| 1891 #endif // defined(OS_CHROMEOS) | 1888 #endif // defined(OS_CHROMEOS) |
| 1892 | 1889 |
| 1893 // Whether there is a Flash version installed that supports clearing LSO data. | 1890 // Whether there is a Flash version installed that supports clearing LSO data. |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2263 "supervised_users.whitelists"; | 2260 "supervised_users.whitelists"; |
| 2264 | 2261 |
| 2265 #if defined(ENABLE_EXTENSIONS) | 2262 #if defined(ENABLE_EXTENSIONS) |
| 2266 // Policy that indicates how to handle animated images. | 2263 // Policy that indicates how to handle animated images. |
| 2267 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2264 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2268 #endif | 2265 #endif |
| 2269 | 2266 |
| 2270 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2267 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2271 | 2268 |
| 2272 } // namespace prefs | 2269 } // namespace prefs |
| OLD | NEW |