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

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

Issue 34393007: [Win] Add option to reauthenticate the OS user before revealing passwords. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@password
Patch Set: remove GetNativeWindow from OS_ANDROID Created 7 years 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | 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 2608 matching lines...) Expand 10 before | Expand all | Expand 10 after
2619 2619
2620 #if defined(OS_ANDROID) 2620 #if defined(OS_ANDROID)
2621 // A list of partner bookmark rename/remove mappings. 2621 // A list of partner bookmark rename/remove mappings.
2622 // Each list item is a dictionary containing a "url", a "provider_title" and 2622 // Each list item is a dictionary containing a "url", a "provider_title" and
2623 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2623 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2624 // given by the PartnerBookmarksProvider and either the user-visible renamed 2624 // given by the PartnerBookmarksProvider and either the user-visible renamed
2625 // title or an empty string if the bookmark node was removed. 2625 // title or an empty string if the bookmark node was removed.
2626 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2626 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2627 #endif 2627 #endif
2628 2628
2629 #if defined(OS_WIN)
2630 // Whether the password was blank, only valid if OS password was last changed
2631 // on or before the value contained in kOsPasswordLastChanged.
2632 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2633
2634 // The number of seconds since epoch that the OS password was last changed.
2635 const char kOsPasswordLastChanged[] =
2636 "password_manager.os_password_last_changed";
2637 #endif
2629 } // namespace prefs 2638 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698