blob: 689c466b23cf3617dac026034c550569643dcf76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2019 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.
#ifndef COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_FEATURES_H_
#define COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_FEATURES_H_
namespace base {
struct Feature;
}
namespace autofill_assistant {
namespace features {
// All features in alphabetical order.
extern const base::Feature kAutofillAssistant;
extern const base::Feature kAutofillAssistantChromeEntry;
extern const base::Feature kAutofillAssistantDirectActions;
} // namespace features
} // namespace autofill_assistant
#endif // COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_FEATURES_H_
|