blob: b5ce2388dae47db2db97d49687e5fabd67a3c230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_SWITCHES_H_
#define COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_SWITCHES_H_
namespace autofill_assistant {
namespace switches {
// All switches in alphabetical order.
extern const char kAutofillAssistantAnnotateDom[];
extern const char kAutofillAssistantAuth[];
extern const char kAutofillAssistantCupPublicKeyBase64[];
extern const char kAutofillAssistantCupKeyVersion[];
extern const char kAutofillAssistantForceFirstTimeUser[];
extern const char kAutofillAssistantForceOnboarding[];
extern const char kAutofillAssistantImplicitTriggeringDebugParameters[];
extern const char kAutofillAssistantServerKey[];
extern const char kAutofillAssistantUrl[];
extern const char kAutofillAssistantDebugMode[];
} // namespace switches
} // namespace autofill_assistant
#endif // COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_SWITCHES_H_
|