| 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 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1771 | 1771 |
| 1772 // A string pref with initial locale set in VPD or manifest. | 1772 // A string pref with initial locale set in VPD or manifest. |
| 1773 const char kInitialLocale[] = "intl.initial_locale"; | 1773 const char kInitialLocale[] = "intl.initial_locale"; |
| 1774 | 1774 |
| 1775 // A boolean pref of the OOBE complete flag (first OOBE part before login). | 1775 // A boolean pref of the OOBE complete flag (first OOBE part before login). |
| 1776 const char kOobeComplete[] = "OobeComplete"; | 1776 const char kOobeComplete[] = "OobeComplete"; |
| 1777 | 1777 |
| 1778 // The name of the screen that has to be shown if OOBE has been interrupted. | 1778 // The name of the screen that has to be shown if OOBE has been interrupted. |
| 1779 const char kOobeScreenPending[] = "OobeScreenPending"; | 1779 const char kOobeScreenPending[] = "OobeScreenPending"; |
| 1780 | 1780 |
| 1781 // A boolean pref to indicate if an eligible controller (either a Chrome OS | |
| 1782 // device, or an Android device) is detected during bootstrapping or | |
| 1783 // shark/remora setup process. A controller can help the device go through OOBE | |
| 1784 // and get enrolled into a domain automatically. | |
| 1785 const char kOobeControllerDetected[] = "OobeControllerDetected"; | |
| 1786 | |
| 1787 // A boolean pref for whether the Goodies promotion webpage has been displayed, | 1781 // A boolean pref for whether the Goodies promotion webpage has been displayed, |
| 1788 // or otherwise disqualified for auto-display, on this device. | 1782 // or otherwise disqualified for auto-display, on this device. |
| 1789 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage"; | 1783 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage"; |
| 1790 | 1784 |
| 1791 // A boolean pref of the device registered flag (second part after first login). | 1785 // A boolean pref of the device registered flag (second part after first login). |
| 1792 const char kDeviceRegistered[] = "DeviceRegistered"; | 1786 const char kDeviceRegistered[] = "DeviceRegistered"; |
| 1793 | 1787 |
| 1794 // Boolean pref to signal corrupted enrollment to force the device through | 1788 // Boolean pref to signal corrupted enrollment to force the device through |
| 1795 // enrollment recovery flow upon next boot. | 1789 // enrollment recovery flow upon next boot. |
| 1796 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; | 1790 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2182 const char kMediaRouterEnableCloudServices[] = | 2176 const char kMediaRouterEnableCloudServices[] = |
| 2183 "media_router.cloudservices.enabled"; | 2177 "media_router.cloudservices.enabled"; |
| 2184 #endif // defined(GOOGLE_CHROME_BUILD) | 2178 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2185 // Whether or not the Media Router first run flow has been acknowledged by the | 2179 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2186 // user. | 2180 // user. |
| 2187 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2181 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2188 "media_router.firstrunflow.acknowledged"; | 2182 "media_router.firstrunflow.acknowledged"; |
| 2189 #endif | 2183 #endif |
| 2190 | 2184 |
| 2191 } // namespace prefs | 2185 } // namespace prefs |
| OLD | NEW |