Skip to content

Commit

Permalink
Fix #35137: Override SafeBrowsingService for iOS (uplift to 1.61.x) (#…
Browse files Browse the repository at this point in the history
…21502)

Uplift of #21494 (squashed) to release
  • Loading branch information
brave-builds authored Jan 7, 2024
1 parent 12c8fa7 commit 2089c35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class BraveApplicationContextImpl : public ApplicationContextImpl {

// ApplicationContextImpl
ukm::UkmRecorder* GetUkmRecorder() override;
SafeBrowsingService* GetSafeBrowsingService() override;
BrowserPolicyConnectorIOS* GetBrowserPolicyConnector() override;
gcm::GCMDriver* GetGCMDriver() override;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
return nullptr;
}

SafeBrowsingService* BraveApplicationContextImpl::GetSafeBrowsingService() {
return nullptr;
}

BrowserPolicyConnectorIOS*
BraveApplicationContextImpl::GetBrowserPolicyConnector() {
return nullptr;
Expand Down

0 comments on commit 2089c35

Please sign in to comment.