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

Side by Side Diff: components/password_manager/core/common/password_manager_pref_names.h

Issue 256003003: Enable Automatic Passwords Saving (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_ 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_ 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 9
10 namespace password_manager { 10 namespace password_manager {
11 11
12 namespace prefs { 12 namespace prefs {
13 13
14 // Alphabetical list of preference names specific to the PasswordManager 14 // Alphabetical list of preference names specific to the PasswordManager
15 // component. Keep alphabetized, and document each in the .cc file. 15 // component. Keep alphabetized, and document each in the .cc file.
16 #if defined(OS_WIN) 16 #if defined(OS_WIN)
17 extern const char kOsPasswordBlank[]; 17 extern const char kOsPasswordBlank[];
18 extern const char kOsPasswordLastChanged[]; 18 extern const char kOsPasswordLastChanged[];
19 #endif 19 #endif
20 extern const char kPasswordManagerAllowShowPasswords[]; 20 extern const char kPasswordManagerAllowShowPasswords[];
21 extern const char kPasswordManagerEnabled[]; 21 extern const char kPasswordManagerEnabled[];
22 extern const char kPasswordManagerEnableAutomaticPasswordsSaving[];
vabr (Chromium) 2014/04/28 09:13:14 Please revert the changes to this *.h file and its
rchtara 2014/04/28 11:28:29 Done.
22 extern const char kPasswordManagerGroupsForDomains[]; 23 extern const char kPasswordManagerGroupsForDomains[];
23 24
24 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) 25 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX)
25 extern const char kLocalProfileId[]; 26 extern const char kLocalProfileId[];
26 #endif 27 #endif
27 28
28 } // namespace prefs 29 } // namespace prefs
29 30
30 } // namespace password_manager 31 } // namespace password_manager
31 32
32 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H _ 33 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698