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 1853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1864 | 1864 |
1865 // A boolean pref of the OOBE complete flag (first OOBE part before login). | 1865 // A boolean pref of the OOBE complete flag (first OOBE part before login). |
1866 const char kOobeComplete[] = "OobeComplete"; | 1866 const char kOobeComplete[] = "OobeComplete"; |
1867 | 1867 |
1868 // The name of the screen that has to be shown if OOBE has been interrupted. | 1868 // The name of the screen that has to be shown if OOBE has been interrupted. |
1869 const char kOobeScreenPending[] = "OobeScreenPending"; | 1869 const char kOobeScreenPending[] = "OobeScreenPending"; |
1870 | 1870 |
1871 // A boolean pref of the device registered flag (second part after first login). | 1871 // A boolean pref of the device registered flag (second part after first login). |
1872 const char kDeviceRegistered[] = "DeviceRegistered"; | 1872 const char kDeviceRegistered[] = "DeviceRegistered"; |
1873 | 1873 |
| 1874 // Boolean pref to signal corrupted enrollment to force the device through |
| 1875 // enrollment recovery flow upon next boot. |
| 1876 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; |
| 1877 |
1874 // List of usernames that used certificates pushed by policy before. | 1878 // List of usernames that used certificates pushed by policy before. |
1875 // This is used to prevent these users from joining multiprofile sessions. | 1879 // This is used to prevent these users from joining multiprofile sessions. |
1876 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; | 1880 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; |
1877 | 1881 |
1878 // A dictionary containing server-provided device state pulled form the cloud | 1882 // A dictionary containing server-provided device state pulled form the cloud |
1879 // after recovery. | 1883 // after recovery. |
1880 const char kServerBackedDeviceState[] = "server_backed_device_state"; | 1884 const char kServerBackedDeviceState[] = "server_backed_device_state"; |
1881 | 1885 |
1882 // Customized wallpaper URL, which is already downloaded and scaled. | 1886 // Customized wallpaper URL, which is already downloaded and scaled. |
1883 // The URL from this preference must never be fetched. It is compared to the | 1887 // The URL from this preference must never be fetched. It is compared to the |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2289 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2293 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2290 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2294 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2291 // title or an empty string if the bookmark node was removed. | 2295 // title or an empty string if the bookmark node was removed. |
2292 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2296 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2293 #endif | 2297 #endif |
2294 | 2298 |
2295 // Whether DNS Quick Check is disabled in proxy resolution. | 2299 // Whether DNS Quick Check is disabled in proxy resolution. |
2296 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2300 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2297 | 2301 |
2298 } // namespace prefs | 2302 } // namespace prefs |
OLD | NEW |