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 1922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1933 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled"; | 1933 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled"; |
1934 | 1934 |
1935 // Dictionary indicating current network bandwidth throttling settings. | 1935 // Dictionary indicating current network bandwidth throttling settings. |
1936 // Contains a boolean (is throttling enabled) and two integers (upload rate | 1936 // Contains a boolean (is throttling enabled) and two integers (upload rate |
1937 // and download rate in kbits/s to throttle to) | 1937 // and download rate in kbits/s to throttle to) |
1938 const char kNetworkThrottlingEnabled[] = "net.throttling_enabled"; | 1938 const char kNetworkThrottlingEnabled[] = "net.throttling_enabled"; |
1939 | 1939 |
1940 // Boolean prefs for the local status of the touchscreen. | 1940 // Boolean prefs for the local status of the touchscreen. |
1941 const char kTouchscreenEnabledLocal[] = "events.touch_screen.enabled_local"; | 1941 const char kTouchscreenEnabledLocal[] = "events.touch_screen.enabled_local"; |
1942 | 1942 |
| 1943 // The key of a string pref containing the ID of the focused user in the signin |
| 1944 // screen. |
| 1945 const char kFocusedPodUserId[] = "FocusedPodUserId"; |
| 1946 |
1943 #endif // defined(OS_CHROMEOS) | 1947 #endif // defined(OS_CHROMEOS) |
1944 | 1948 |
1945 // Whether there is a Flash version installed that supports clearing LSO data. | 1949 // Whether there is a Flash version installed that supports clearing LSO data. |
1946 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1950 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1947 | 1951 |
1948 // Whether we should show Pepper Flash-specific settings. | 1952 // Whether we should show Pepper Flash-specific settings. |
1949 const char kPepperFlashSettingsEnabled[] = | 1953 const char kPepperFlashSettingsEnabled[] = |
1950 "browser.pepper_flash_settings_enabled"; | 1954 "browser.pepper_flash_settings_enabled"; |
1951 | 1955 |
1952 // String which specifies where to store the disk cache. | 1956 // String which specifies where to store the disk cache. |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2470 | 2474 |
2471 // Number of times user has seen the "desktop to iOS" history page promotion. | 2475 // Number of times user has seen the "desktop to iOS" history page promotion. |
2472 const char kNumberHistoryPageIOSPromoShown[] = | 2476 const char kNumberHistoryPageIOSPromoShown[] = |
2473 "history_page_ios_promo_shown_count"; | 2477 "history_page_ios_promo_shown_count"; |
2474 | 2478 |
2475 // True if the user has dismissed the "desktop to iOS" history page promotion. | 2479 // True if the user has dismissed the "desktop to iOS" history page promotion. |
2476 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; | 2480 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; |
2477 #endif | 2481 #endif |
2478 | 2482 |
2479 } // namespace prefs | 2483 } // namespace prefs |
OLD | NEW |