19 lines
600 B
C++
19 lines
600 B
C++
/* Copyright (c) 2025 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 https://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BRAVE_COMPONENTS_BRAVE_ORIGIN_FEATURES_H_
|
|
#define BRAVE_COMPONENTS_BRAVE_ORIGIN_FEATURES_H_
|
|
|
|
#include "base/feature_list.h"
|
|
#include "build/build_config.h"
|
|
|
|
namespace brave_origin::features {
|
|
|
|
BASE_DECLARE_FEATURE(kBraveOrigin);
|
|
|
|
} // namespace brave_origin::features
|
|
|
|
#endif // BRAVE_COMPONENTS_BRAVE_ORIGIN_FEATURES_H_
|