autofill_switches.h revision 58537e28ecd584eab876aee8be7156509866d23a
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 kAutofillServiceUrl[];
14extern const char kDisableInteractiveAutocomplete[];
15extern const char kEnableExperimentalFormFilling[];
16extern const char kEnableInteractiveAutocomplete[];
17extern const char kShowAutofillTypePredictions[];
18extern const char kWalletSecureServiceUrl[];
19extern const char kWalletServiceUrl[];
20extern const char kWalletServiceUseProd[];
21
22}  // namespace switches
23}  // namespace autofill
24
25#endif  // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_
26