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

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: rebase. remove one unneeded commit. add support for changes in 39253002 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
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 2599 matching lines...) Expand 10 before | Expand all | Expand 10 after
2610 2610
2611 #if defined(OS_ANDROID) 2611 #if defined(OS_ANDROID)
2612 // A list of partner bookmark rename/remove mappings. 2612 // A list of partner bookmark rename/remove mappings.
2613 // Each list item is a dictionary containing a "url", a "provider_title" and 2613 // Each list item is a dictionary containing a "url", a "provider_title" and
2614 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2614 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2615 // given by the PartnerBookmarksProvider and either the user-visible renamed 2615 // given by the PartnerBookmarksProvider and either the user-visible renamed
2616 // title or an empty string if the bookmark node was removed. 2616 // title or an empty string if the bookmark node was removed.
2617 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2617 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2618 #endif 2618 #endif
2619 2619
2620 #if defined(OS_WIN)
2621 // Whether the password was blank, only valid if OS password was last changed
2622 // on or before the value contained in kOsPasswordLastChanged.
2623 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2624
2625 // The number of seconds since epoch that the OS password was last changed.
2626 const char kOsPasswordLastChanged[] =
2627 "password_manager.os_password_last_changed";
2628 #endif
2620 } // namespace prefs 2629 } // namespace prefs
OLDNEW
« chrome/browser/ui/webui/options/password_manager_handler.cc ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698