password_manager_switches.cc revision 116680a4aac90f2aa7413d9095a592090648e557
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#include "components/password_manager/core/common/password_manager_switches.h"
6
7namespace password_manager {
8
9namespace switches {
10
11// Disable both saving and filling for the sync signin form.
12const char kDisableManagerForSyncSignin[] =
13    "disable-manager-for-sync-signin";
14
15// Enable saving and filling for the sync signin form. Currently the default
16// behavior.
17const char kEnableManagerForSyncSignin[] =
18    "enable-manager-for-sync-signin";
19
20// Disables the save-password prompt. Passwords are then saved automatically,
21// without asking the user.
22const char kEnableAutomaticPasswordSaving[] =
23    "enable-automatic-password-saving";
24
25}  // namespace switches
26
27}  // namespace password_manager
28