Enable the kBraveOrigin feature flag by default on all platforms and add a chrome://flags entry so it can be toggled for testing.
15 lines
492 B
C++
15 lines
492 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/. */
|
|
|
|
#include "brave/components/brave_origin/features.h"
|
|
|
|
#include "base/feature_list.h"
|
|
|
|
namespace brave_origin::features {
|
|
|
|
BASE_FEATURE(kBraveOrigin, base::FEATURE_ENABLED_BY_DEFAULT);
|
|
|
|
} // namespace brave_origin::features
|