blob: da90dfb8f1cc3c216768b5bc211c97f4f5f697a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/autofill_assistant/browser/switches.h"
namespace autofill_assistant {
namespace switches {
// Sets the API key to be used instead of Chrome's default key when sending
// requests to the backend.
const char kAutofillAssistantServerKey[] = "autofill-assistant-key";
// Overrides the default backend URL.
const char kAutofillAssistantUrl[] = "autofill-assistant-url";
// Disables authentication when set to false. This is only useful
// during development, as prod instances require authentication.
const char kAutofillAssistantAuth[] = "autofill-assistant-auth";
} // namespace switches
} // namespace autofill_assistant
|