autofill_switches.h revision a1401311d1ab56c4ed0a474bd38c108f75cb0cd9
1// Copyright 2013 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_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_
6#define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_
7
8namespace autofill {
9namespace switches {
10
11// All switches in alphabetical order. The switches should be documented
12// alongside the definition of their values in the .cc file.
13extern const char kDisableIgnoreAutocompleteOff[];
14extern const char kDisableInteractiveAutocomplete[];
15extern const char kDisablePasswordGeneration[];
16extern const char kEnableInteractiveAutocomplete[];
17extern const char kEnablePasswordGeneration[];
18extern const char kLocalHeuristicsOnlyForPasswordGeneration[];
19extern const char kShowAutofillTypePredictions[];
20extern const char kWalletSecureServiceUrl[];
21extern const char kWalletServiceUrl[];
22extern const char kWalletServiceUseSandbox[];
23
24}  // namespace switches
25}  // namespace autofill
26
27#endif  // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_
28