Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(591)

Side by Side Diff: chrome/common/pref_names.cc

Issue 151003004: Add an automatic settings reset banner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pre-review cleanup. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 2612 matching lines...) Expand 10 before | Expand all | Expand 10 after
2623 "profile.extensions.activity_log.num_consumers_active"; 2623 "profile.extensions.activity_log.num_consumers_active";
2624 // The old version was a bool. 2624 // The old version was a bool.
2625 const char kWatchdogExtensionActiveOld[] = 2625 const char kWatchdogExtensionActiveOld[] =
2626 "profile.extensions.activity_log.watchdog_extension_active"; 2626 "profile.extensions.activity_log.watchdog_extension_active";
2627 2627
2628 // A dictionary pref which maps profile names to dictionary values which hold 2628 // A dictionary pref which maps profile names to dictionary values which hold
2629 // hashes of profile prefs that we track to detect changes that happen outside 2629 // hashes of profile prefs that we track to detect changes that happen outside
2630 // of Chrome. 2630 // of Chrome.
2631 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; 2631 const char kProfilePreferenceHashes[] = "profile.preference_hashes";
2632 2632
2633 // A timestamp (stored in base::Time::ToInternalValue format) of the last time
2634 // a preference was reset.
2635 const char kProfilePreferenceResetTime[] = "profile.preference_reset_time";
gab 2014/02/05 15:23:52 This the the local state section (profile prefs ar
robertshield 2014/02/06 18:56:50 This is a local state pref as discussed. Will keep
gab 2014/02/06 20:40:11 You didn't actually leave it here :).
robertshield 2014/02/07 04:36:19 Done.
2636
2633 // Stores a pair of local time and corresponding network time to bootstrap 2637 // Stores a pair of local time and corresponding network time to bootstrap
2634 // network time tracker when browser starts. 2638 // network time tracker when browser starts.
2635 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; 2639 const char kNetworkTimeMapping[] = "profile.network_time_mapping";
2636 2640
2637 #if defined(OS_ANDROID) 2641 #if defined(OS_ANDROID)
2638 // A list of partner bookmark rename/remove mappings. 2642 // A list of partner bookmark rename/remove mappings.
2639 // Each list item is a dictionary containing a "url", a "provider_title" and 2643 // Each list item is a dictionary containing a "url", a "provider_title" and
2640 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2644 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2641 // given by the PartnerBookmarksProvider and either the user-visible renamed 2645 // given by the PartnerBookmarksProvider and either the user-visible renamed
2642 // title or an empty string if the bookmark node was removed. 2646 // title or an empty string if the bookmark node was removed.
2643 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2647 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2644 #endif 2648 #endif
2645 2649
2646 #if defined(OS_WIN) 2650 #if defined(OS_WIN)
2647 // Whether the password was blank, only valid if OS password was last changed 2651 // Whether the password was blank, only valid if OS password was last changed
2648 // on or before the value contained in kOsPasswordLastChanged. 2652 // on or before the value contained in kOsPasswordLastChanged.
2649 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2653 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2650 2654
2651 // The number of seconds since epoch that the OS password was last changed. 2655 // The number of seconds since epoch that the OS password was last changed.
2652 const char kOsPasswordLastChanged[] = 2656 const char kOsPasswordLastChanged[] =
2653 "password_manager.os_password_last_changed"; 2657 "password_manager.os_password_last_changed";
2654 #endif 2658 #endif
2655 2659
2656 // Whether DNS Quick Check is disabled in proxy resolution. 2660 // Whether DNS Quick Check is disabled in proxy resolution.
2657 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2661 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2658 2662
2659 } // namespace prefs 2663 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698