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