Chromium changes: https://chromium.googlesource.com/chromium/src/+/9f6e2f7e1969f42f7fe9b1d30dd73097ab5ac97b commit 9f6e2f7e1969f42f7fe9b1d30dd73097ab5ac97b Author: Oleh Lamzin <lamzin@google.com> Date: Mon Feb 23 03:25:25 2026 -0800 private_ai: Rename features flags For some period of time we had to use "legion" name for our code, but now we can use "private_ai". Bug: b:486149391 Change-Id: Id5c37caace03d5dadd4f01b11fef3cc7ddea26e3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7584513 Reviewed-by: Saeid Eid <saeideid@google.com> Reviewed-by: Mike West <mkwst@chromium.org> Auto-Submit: Oleh Lamzin <lamzin@google.com> Reviewed-by: Sophie Chang <sophiechang@chromium.org> Commit-Queue: Oleh Lamzin <lamzin@google.com> Cr-Commit-Position: refs/heads/main@{#1588606}
19 lines
557 B
C++
19 lines
557 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 "base/feature_override.h"
|
|
|
|
#include <components/private_ai/features.cc>
|
|
|
|
namespace private_ai {
|
|
|
|
OVERRIDE_FEATURE_DEFAULT_STATES({{
|
|
#if !BUILDFLAG(IS_ANDROID)
|
|
{kPrivateAi, base::FEATURE_DISABLED_BY_DEFAULT},
|
|
#endif // !BUILDFLAG(IS_ANDROID)
|
|
}});
|
|
|
|
} // namespace private_ai
|