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

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: Gab's nits. 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 2604 matching lines...) Expand 10 before | Expand all | Expand 10 after
2615 "profile.extensions.activity_log.num_consumers_active"; 2615 "profile.extensions.activity_log.num_consumers_active";
2616 // The old version was a bool. 2616 // The old version was a bool.
2617 const char kWatchdogExtensionActiveOld[] = 2617 const char kWatchdogExtensionActiveOld[] =
2618 "profile.extensions.activity_log.watchdog_extension_active"; 2618 "profile.extensions.activity_log.watchdog_extension_active";
2619 2619
2620 // A dictionary pref which maps profile names to dictionary values which hold 2620 // A dictionary pref which maps profile names to dictionary values which hold
2621 // hashes of profile prefs that we track to detect changes that happen outside 2621 // hashes of profile prefs that we track to detect changes that happen outside
2622 // of Chrome. 2622 // of Chrome.
2623 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; 2623 const char kProfilePreferenceHashes[] = "profile.preference_hashes";
2624 2624
2625 // A timestamp (stored in base::Time::ToInternalValue format) of the last time
2626 // a preference was reset.
2627 const char kProfilePreferenceResetTime[] = "profile.preference_reset_time";
2628
2625 // Stores a pair of local time and corresponding network time to bootstrap 2629 // Stores a pair of local time and corresponding network time to bootstrap
2626 // network time tracker when browser starts. 2630 // network time tracker when browser starts.
2627 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; 2631 const char kNetworkTimeMapping[] = "profile.network_time_mapping";
2628 2632
2629 #if defined(OS_ANDROID) 2633 #if defined(OS_ANDROID)
2630 // A list of partner bookmark rename/remove mappings. 2634 // A list of partner bookmark rename/remove mappings.
2631 // Each list item is a dictionary containing a "url", a "provider_title" and 2635 // Each list item is a dictionary containing a "url", a "provider_title" and
2632 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2636 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2633 // given by the PartnerBookmarksProvider and either the user-visible renamed 2637 // given by the PartnerBookmarksProvider and either the user-visible renamed
2634 // title or an empty string if the bookmark node was removed. 2638 // title or an empty string if the bookmark node was removed.
2635 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2639 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2636 #endif 2640 #endif
2637 2641
2638 #if defined(OS_WIN) 2642 #if defined(OS_WIN)
2639 // Whether the password was blank, only valid if OS password was last changed 2643 // Whether the password was blank, only valid if OS password was last changed
2640 // on or before the value contained in kOsPasswordLastChanged. 2644 // on or before the value contained in kOsPasswordLastChanged.
2641 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2645 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2642 2646
2643 // The number of seconds since epoch that the OS password was last changed. 2647 // The number of seconds since epoch that the OS password was last changed.
2644 const char kOsPasswordLastChanged[] = 2648 const char kOsPasswordLastChanged[] =
2645 "password_manager.os_password_last_changed"; 2649 "password_manager.os_password_last_changed";
2646 #endif 2650 #endif
2647 2651
2648 // Whether DNS Quick Check is disabled in proxy resolution. 2652 // Whether DNS Quick Check is disabled in proxy resolution.
2649 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2653 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2650 2654
2651 } // namespace prefs 2655 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698