| 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/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 1919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1930 | 1930 |
| 1931 // If material design OOBE should be selected if OOBE has been interrupted. | 1931 // If material design OOBE should be selected if OOBE has been interrupted. |
| 1932 const char kOobeMdMode[] = "OobeMdModeEnabled"; | 1932 const char kOobeMdMode[] = "OobeMdModeEnabled"; |
| 1933 | 1933 |
| 1934 // A boolean pref to indicate if an eligible controller (either a Chrome OS | 1934 // A boolean pref to indicate if an eligible controller (either a Chrome OS |
| 1935 // device, or an Android device) is detected during bootstrapping or | 1935 // device, or an Android device) is detected during bootstrapping or |
| 1936 // shark/remora setup process. A controller can help the device go through OOBE | 1936 // shark/remora setup process. A controller can help the device go through OOBE |
| 1937 // and get enrolled into a domain automatically. | 1937 // and get enrolled into a domain automatically. |
| 1938 const char kOobeControllerDetected[] = "OobeControllerDetected"; | 1938 const char kOobeControllerDetected[] = "OobeControllerDetected"; |
| 1939 | 1939 |
| 1940 // A 64-bit signed integer pref (encoded as a string) which stores the time | |
| 1941 // of the last OOBE-initiated update check not resulting in an update. | |
| 1942 const char kOobeTimeOfLastUpdateCheckWithoutUpdate[] = | |
| 1943 "OobeTimeOfLastUpdateCheckWithoutUpdate"; | |
| 1944 | |
| 1945 // A boolean pref for whether the Goodies promotion webpage has been displayed, | 1940 // A boolean pref for whether the Goodies promotion webpage has been displayed, |
| 1946 // or otherwise disqualified for auto-display, on this device. | 1941 // or otherwise disqualified for auto-display, on this device. |
| 1947 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage"; | 1942 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage"; |
| 1948 | 1943 |
| 1949 // A boolean pref of the device registered flag (second part after first login). | 1944 // A boolean pref of the device registered flag (second part after first login). |
| 1950 const char kDeviceRegistered[] = "DeviceRegistered"; | 1945 const char kDeviceRegistered[] = "DeviceRegistered"; |
| 1951 | 1946 |
| 1952 // Boolean pref to signal corrupted enrollment to force the device through | 1947 // Boolean pref to signal corrupted enrollment to force the device through |
| 1953 // enrollment recovery flow upon next boot. | 1948 // enrollment recovery flow upon next boot. |
| 1954 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; | 1949 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2576 // internal format (int64) in local store. (I.e., this is not a per-profile | 2571 // internal format (int64) in local store. (I.e., this is not a per-profile |
| 2577 // pref.) | 2572 // pref.) |
| 2578 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; | 2573 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; |
| 2579 #endif | 2574 #endif |
| 2580 | 2575 |
| 2581 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 2576 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
| 2582 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; | 2577 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; |
| 2583 #endif | 2578 #endif |
| 2584 | 2579 |
| 2585 } // namespace prefs | 2580 } // namespace prefs |
| OLD | NEW |