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 1855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1866 | 1866 |
1867 // A boolean pref of the OOBE complete flag (first OOBE part before login). | 1867 // A boolean pref of the OOBE complete flag (first OOBE part before login). |
1868 const char kOobeComplete[] = "OobeComplete"; | 1868 const char kOobeComplete[] = "OobeComplete"; |
1869 | 1869 |
1870 // The name of the screen that has to be shown if OOBE has been interrupted. | 1870 // The name of the screen that has to be shown if OOBE has been interrupted. |
1871 const char kOobeScreenPending[] = "OobeScreenPending"; | 1871 const char kOobeScreenPending[] = "OobeScreenPending"; |
1872 | 1872 |
1873 // A boolean pref of the device registered flag (second part after first login). | 1873 // A boolean pref of the device registered flag (second part after first login). |
1874 const char kDeviceRegistered[] = "DeviceRegistered"; | 1874 const char kDeviceRegistered[] = "DeviceRegistered"; |
1875 | 1875 |
1876 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; | |
pastarmovj
2014/07/08 12:36:31
Document this one.
Thiemo Nagel
2014/07/08 14:02:05
Done. I had totally forgotten that.
| |
1877 | |
1876 // List of usernames that used certificates pushed by policy before. | 1878 // List of usernames that used certificates pushed by policy before. |
1877 // This is used to prevent these users from joining multiprofile sessions. | 1879 // This is used to prevent these users from joining multiprofile sessions. |
1878 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; | 1880 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; |
1879 | 1881 |
1880 // A dictionary containing server-provided device state pulled form the cloud | 1882 // A dictionary containing server-provided device state pulled form the cloud |
1881 // after recovery. | 1883 // after recovery. |
1882 const char kServerBackedDeviceState[] = "server_backed_device_state"; | 1884 const char kServerBackedDeviceState[] = "server_backed_device_state"; |
1883 | 1885 |
1884 // Customized wallpaper URL, which is already downloaded and scaled. | 1886 // Customized wallpaper URL, which is already downloaded and scaled. |
1885 // 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2299 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2301 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2300 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2302 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2301 // title or an empty string if the bookmark node was removed. | 2303 // title or an empty string if the bookmark node was removed. |
2302 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2304 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2303 #endif | 2305 #endif |
2304 | 2306 |
2305 // Whether DNS Quick Check is disabled in proxy resolution. | 2307 // Whether DNS Quick Check is disabled in proxy resolution. |
2306 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2308 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2307 | 2309 |
2308 } // namespace prefs | 2310 } // namespace prefs |
OLD | NEW |