| 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 2537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2548 const char kOverscrollMinimumThresholdStart[] = | 2548 const char kOverscrollMinimumThresholdStart[] = |
| 2549 "overscroll.minimum_threshold_start"; | 2549 "overscroll.minimum_threshold_start"; |
| 2550 const char kOverscrollMinimumThresholdStartTouchpad[] = | 2550 const char kOverscrollMinimumThresholdStartTouchpad[] = |
| 2551 "overscroll.minimum_threshold_start_touchpad"; | 2551 "overscroll.minimum_threshold_start_touchpad"; |
| 2552 const char kOverscrollVerticalThresholdStart[] = | 2552 const char kOverscrollVerticalThresholdStart[] = |
| 2553 "overscroll.vertical_threshold_start"; | 2553 "overscroll.vertical_threshold_start"; |
| 2554 const char kOverscrollHorizontalResistThreshold[] = | 2554 const char kOverscrollHorizontalResistThreshold[] = |
| 2555 "overscroll.horizontal_resist_threshold"; | 2555 "overscroll.horizontal_resist_threshold"; |
| 2556 const char kOverscrollVerticalResistThreshold[] = | 2556 const char kOverscrollVerticalResistThreshold[] = |
| 2557 "overscroll.vertical_resist_threshold"; | 2557 "overscroll.vertical_resist_threshold"; |
| 2558 // TODO(mohsen): Remove following pref in M33. By then, it will have been | |
| 2559 // cleared from preferences file for majority of users and it will be ready to | |
| 2560 // be removed: crbug.com/269292. | |
| 2561 // A temporary pref to do a one-time wipe of gesture preferences. | |
| 2562 const char kGestureConfigIsTrustworthy[] = "gesture.config_is_trustworthy"; | |
| 2563 #endif | 2558 #endif |
| 2564 | 2559 |
| 2565 // Counts how many more times the 'profile on a network share' warning should be | 2560 // Counts how many more times the 'profile on a network share' warning should be |
| 2566 // shown to the user before the next silence period. | 2561 // shown to the user before the next silence period. |
| 2567 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2562 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2568 // Tracks the time of the last shown warning. Used to reset | 2563 // Tracks the time of the last shown warning. Used to reset |
| 2569 // |network_profile.warnings_left| after a silence period. | 2564 // |network_profile.warnings_left| after a silence period. |
| 2570 const char kNetworkProfileLastWarningTime[] = | 2565 const char kNetworkProfileLastWarningTime[] = |
| 2571 "network_profile.last_warning_time"; | 2566 "network_profile.last_warning_time"; |
| 2572 | 2567 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2674 | 2669 |
| 2675 // The number of seconds since epoch that the OS password was last changed. | 2670 // The number of seconds since epoch that the OS password was last changed. |
| 2676 const char kOsPasswordLastChanged[] = | 2671 const char kOsPasswordLastChanged[] = |
| 2677 "password_manager.os_password_last_changed"; | 2672 "password_manager.os_password_last_changed"; |
| 2678 #endif | 2673 #endif |
| 2679 | 2674 |
| 2680 // Whether DNS Quick Check is disabled in proxy resolution. | 2675 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2681 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2676 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2682 | 2677 |
| 2683 } // namespace prefs | 2678 } // namespace prefs |
| OLD | NEW |