Fix Brave Origin Settings Handler file path (#33321)

This commit is contained in:
Brian R. Bondy
2026-01-20 19:09:12 -05:00
committed by GitHub
parent ec0e6e75eb
commit f1b31634cd
6 changed files with 10 additions and 10 deletions
@@ -7,7 +7,7 @@
#include "base/android/jni_android.h"
#include "brave/browser/brave_origin/android/jni_headers/BraveOriginServiceFactory_jni.h"
#include "brave/components/brave_origin/brave_origin_handler.h"
#include "brave/components/brave_origin/brave_origin_settings_handler_impl.h"
#include "chrome/browser/profiles/profile.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
+1 -1
View File
@@ -32,7 +32,7 @@
#include "brave/components/ai_chat/core/common/buildflags/buildflags.h"
#include "brave/components/brave_account/brave_account_service.h"
#include "brave/components/brave_account/features.h"
#include "brave/components/brave_origin/brave_origin_handler.h"
#include "brave/components/brave_origin/brave_origin_settings_handler_impl.h"
#include "brave/components/brave_origin/brave_origin_utils.h"
#include "brave/components/brave_shields/core/common/features.h"
#include "brave/components/brave_vpn/common/buildflags/buildflags.h"
+3 -3
View File
@@ -5,8 +5,6 @@
static_library("brave_origin") {
sources = [
"brave_origin_handler.cc",
"brave_origin_handler.h",
"brave_origin_policy_info.cc",
"brave_origin_policy_info.h",
"brave_origin_policy_manager.cc",
@@ -15,6 +13,8 @@ static_library("brave_origin") {
"brave_origin_prefs.h",
"brave_origin_service.cc",
"brave_origin_service.h",
"brave_origin_settings_handler_impl.cc",
"brave_origin_settings_handler_impl.h",
"brave_origin_utils.cc",
"brave_origin_utils.h",
"features.cc",
@@ -45,9 +45,9 @@ source_set("unit_tests") {
testonly = true
sources = [
"brave_origin_handler_unittest.cc",
"brave_origin_policy_manager_unittest.cc",
"brave_origin_service_unittest.cc",
"brave_origin_settings_handler_impl_unittest.cc",
"brave_origin_utils_unittest.cc",
"profile_id_unittest.cc",
]
@@ -3,7 +3,7 @@
* 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/brave_origin_handler.h"
#include "brave/components/brave_origin/brave_origin_settings_handler_impl.h"
#include "brave/components/brave_origin/brave_origin_service.h"
#include "brave/components/brave_origin/brave_origin_utils.h"
@@ -3,8 +3,8 @@
* 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_BRAVE_ORIGIN_HANDLER_H_
#define BRAVE_COMPONENTS_BRAVE_ORIGIN_BRAVE_ORIGIN_HANDLER_H_
#ifndef BRAVE_COMPONENTS_BRAVE_ORIGIN_BRAVE_ORIGIN_SETTINGS_HANDLER_IMPL_H_
#define BRAVE_COMPONENTS_BRAVE_ORIGIN_BRAVE_ORIGIN_SETTINGS_HANDLER_IMPL_H_
#include "brave/components/brave_origin/mojom/brave_origin_settings.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
@@ -46,4 +46,4 @@ class BraveOriginSettingsHandlerImpl
} // namespace brave_origin
#endif // BRAVE_COMPONENTS_BRAVE_ORIGIN_BRAVE_ORIGIN_HANDLER_H_
#endif // BRAVE_COMPONENTS_BRAVE_ORIGIN_BRAVE_ORIGIN_SETTINGS_HANDLER_IMPL_H_
@@ -3,7 +3,7 @@
* 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/brave_origin_handler.h"
#include "brave/components/brave_origin/brave_origin_settings_handler_impl.h"
#include <memory>
#include <optional>