diff --git a/test/base/brave_testing_profile.cc b/test/base/brave_testing_profile.cc index 5d02a0d93c8..4522e178a8e 100644 --- a/test/base/brave_testing_profile.cc +++ b/test/base/brave_testing_profile.cc @@ -10,8 +10,9 @@ #include "components/prefs/pref_service.h" BraveTestingProfile::BraveTestingProfile(const base::FilePath& path, - Delegate* delegate) - : TestingProfile(path, delegate) {} + Delegate* delegate, + CreateMode create_mode) + : TestingProfile(path, delegate, create_mode) {} BraveTestingProfile::BraveTestingProfile() : TestingProfile() { #if !BUILDFLAG(USE_GCM_FROM_PLATFORM) diff --git a/test/base/brave_testing_profile.h b/test/base/brave_testing_profile.h index 3cef8c735c5..7329669c980 100644 --- a/test/base/brave_testing_profile.h +++ b/test/base/brave_testing_profile.h @@ -11,7 +11,9 @@ class BraveTestingProfile : public TestingProfile { public: BraveTestingProfile(); - BraveTestingProfile(const base::FilePath& path, Delegate* delegate); + BraveTestingProfile(const base::FilePath& path, + Delegate* delegate, + CreateMode create_mode); ~BraveTestingProfile() override = default; };