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

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

Powered by Google App Engine
This is Rietveld 408576698