Skip to content

Commit bf2088f

Browse files
committed
SetBaseBundleID -> SetBaseBundleIDOverride
Chromium change: https://source.chromium.org/chromium/chromium/src/+/370a58104f2ea5d4cd89636ae24212adc9d47410 commit 370a58104f2ea5d4cd89636ae24212adc9d47410 Author: Avi Drissman <[email protected]> Date: Tue May 6 08:54:54 2025 -0700 Modernize base::apple's base bundle ID Changes: - Use no_destructor, not raw pointers - Use std::string_view, not char * and strdup Bug: none
1 parent ed6bd9c commit bf2088f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ios/app/brave_core_main.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ - (instancetype)initWithAdditionalSwitches:
216216
#endif // PA_BUILDFLAG(USE_PARTITION_ALLOC) && !BUILDFLAG(USE_BLINK)
217217

218218
NSBundle* baseBundle = base::apple::OuterBundle();
219-
base::apple::SetBaseBundleID(
219+
base::apple::SetBaseBundleIDOverride(
220220
base::SysNSStringToUTF8([baseBundle bundleIdentifier]).c_str());
221221

222222
// Register all providers before calling any Chromium code.
@@ -612,7 +612,7 @@ + (void)initializeResourceBundleForTesting {
612612
[BraveCoreMain initializeICUForTesting];
613613

614614
NSBundle* baseBundle = base::apple::OuterBundle();
615-
base::apple::SetBaseBundleID(
615+
base::apple::SetBaseBundleIDOverride(
616616
base::SysNSStringToUTF8([baseBundle bundleIdentifier]).c_str());
617617

618618
// Register all providers before calling any Chromium code.

0 commit comments

Comments
 (0)