| 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 1901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1912 // This is saved to file and cleared after chrome process starts. | 1912 // This is saved to file and cleared after chrome process starts. |
| 1913 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1913 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
| 1914 | 1914 |
| 1915 // An integer pref of the current consumer management stage. The meaning of the | 1915 // An integer pref of the current consumer management stage. The meaning of the |
| 1916 // value is defined in: | 1916 // value is defined in: |
| 1917 // chrome/browser/chromeos/policy/consumer_management_stage.h | 1917 // chrome/browser/chromeos/policy/consumer_management_stage.h |
| 1918 const char kConsumerManagementStage[] = "consumer_management.stage"; | 1918 const char kConsumerManagementStage[] = "consumer_management.stage"; |
| 1919 | 1919 |
| 1920 // A boolean pref. If set to true, new experimental OOBE UI is displayed. | 1920 // A boolean pref. If set to true, new experimental OOBE UI is displayed. |
| 1921 const char kNewOobe[] = "NewOobe"; | 1921 const char kNewOobe[] = "NewOobe"; |
| 1922 |
| 1923 // A boolean pref. If set to true, experimental webview based signin flow |
| 1924 // activated. |
| 1925 extern const char kWebviewSigninEnabled[] = |
| 1926 "webview_signin_enabled"; |
| 1922 #endif // defined(OS_CHROMEOS) | 1927 #endif // defined(OS_CHROMEOS) |
| 1923 | 1928 |
| 1924 // Whether there is a Flash version installed that supports clearing LSO data. | 1929 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1925 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1930 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1926 | 1931 |
| 1927 // Whether we should show Pepper Flash-specific settings. | 1932 // Whether we should show Pepper Flash-specific settings. |
| 1928 const char kPepperFlashSettingsEnabled[] = | 1933 const char kPepperFlashSettingsEnabled[] = |
| 1929 "browser.pepper_flash_settings_enabled"; | 1934 "browser.pepper_flash_settings_enabled"; |
| 1930 | 1935 |
| 1931 // String which specifies where to store the disk cache. | 1936 // String which specifies where to store the disk cache. |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2273 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2278 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
| 2274 | 2279 |
| 2275 // Last user's interaction with the password bubble. | 2280 // Last user's interaction with the password bubble. |
| 2276 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2281 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
| 2277 | 2282 |
| 2278 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2283 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
| 2279 const char kRecoveryComponentNeedsElevation[] = | 2284 const char kRecoveryComponentNeedsElevation[] = |
| 2280 "recovery_component.needs_elevation"; | 2285 "recovery_component.needs_elevation"; |
| 2281 | 2286 |
| 2282 } // namespace prefs | 2287 } // namespace prefs |
| OLD | NEW |