Following Chromium's lead: "Issue 1364289: Sort out constexpr base::Feature" https://bugs.chromium.org/p/chromium/issues/detail?id=1364289
20 lines
580 B
C++
20 lines
580 B
C++
// Copyright (c) 2022 The Brave Authors. All rights reserved.
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// you can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#ifndef BRAVE_COMPONENTS_DE_AMP_COMMON_FEATURES_H_
|
|
#define BRAVE_COMPONENTS_DE_AMP_COMMON_FEATURES_H_
|
|
|
|
#include "base/feature_list.h"
|
|
|
|
namespace de_amp {
|
|
namespace features {
|
|
|
|
BASE_DECLARE_FEATURE(kBraveDeAMP);
|
|
|
|
} // namespace features
|
|
} // namespace de_amp
|
|
|
|
#endif // BRAVE_COMPONENTS_DE_AMP_COMMON_FEATURES_H_
|