• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_
7 
8 #include "base/basictypes.h"
9 
10 namespace password_manager {
11 
12 namespace prefs {
13 
14 // Alphabetical list of preference names specific to the PasswordManager
15 // component. Keep alphabetized, and document each in the .cc file.
16 #if defined(OS_WIN)
17 extern const char kOsPasswordBlank[];
18 extern const char kOsPasswordLastChanged[];
19 #endif
20 extern const char kPasswordManagerAllowShowPasswords[];
21 extern const char kPasswordManagerEnabled[];
22 extern const char kPasswordManagerGroupsForDomains[];
23 
24 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX)
25 extern const char kLocalProfileId[];
26 #endif
27 
28 }  // namespace prefs
29 
30 }  // namespace password_manager
31 
32 #endif  // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_PREF_NAMES_H_
33