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
10namespace password_manager {
11
12namespace 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)
17extern const char kOsPasswordBlank[];
18extern const char kOsPasswordLastChanged[];
19#endif
20extern const char kPasswordManagerAllowShowPasswords[];
21extern const char kPasswordManagerSavingEnabled[];
22extern const char kPasswordManagerGroupsForDomains[];
23
24#if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX)
25extern 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