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 1920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1931 // This is saved to file and cleared after chrome process starts. | 1931 // This is saved to file and cleared after chrome process starts. |
1932 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1932 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
1933 | 1933 |
1934 // An integer pref of the current consumer management stage. The meaning of the | 1934 // An integer pref of the current consumer management stage. The meaning of the |
1935 // value is defined in: | 1935 // value is defined in: |
1936 // chrome/browser/chromeos/policy/consumer_management_stage.h | 1936 // chrome/browser/chromeos/policy/consumer_management_stage.h |
1937 const char kConsumerManagementStage[] = "consumer_management.stage"; | 1937 const char kConsumerManagementStage[] = "consumer_management.stage"; |
1938 | 1938 |
1939 // A boolean pref. If set to true, new experimental OOBE UI is displayed. | 1939 // A boolean pref. If set to true, new experimental OOBE UI is displayed. |
1940 const char kNewOobe[] = "NewOobe"; | 1940 const char kNewOobe[] = "NewOobe"; |
| 1941 |
| 1942 // A boolean pref. If set to true, experimental webview based signin flow |
| 1943 // activated. |
| 1944 extern const char kWebviewSigninEnabled[] = |
| 1945 "webview_signin_enabled"; |
1941 #endif // defined(OS_CHROMEOS) | 1946 #endif // defined(OS_CHROMEOS) |
1942 | 1947 |
1943 // Whether there is a Flash version installed that supports clearing LSO data. | 1948 // Whether there is a Flash version installed that supports clearing LSO data. |
1944 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1949 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1945 | 1950 |
1946 // Whether we should show Pepper Flash-specific settings. | 1951 // Whether we should show Pepper Flash-specific settings. |
1947 const char kPepperFlashSettingsEnabled[] = | 1952 const char kPepperFlashSettingsEnabled[] = |
1948 "browser.pepper_flash_settings_enabled"; | 1953 "browser.pepper_flash_settings_enabled"; |
1949 | 1954 |
1950 // String which specifies where to store the disk cache. | 1955 // String which specifies where to store the disk cache. |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2292 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2297 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2293 | 2298 |
2294 // Last user's interaction with the password bubble. | 2299 // Last user's interaction with the password bubble. |
2295 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2300 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2296 | 2301 |
2297 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2302 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2298 const char kRecoveryComponentNeedsElevation[] = | 2303 const char kRecoveryComponentNeedsElevation[] = |
2299 "recovery_component.needs_elevation"; | 2304 "recovery_component.needs_elevation"; |
2300 | 2305 |
2301 } // namespace prefs | 2306 } // namespace prefs |
OLD | NEW |