Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 _ |
| OLD | NEW |