Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2200)

Unified Diff: chrome/browser/browser_process_impl.h

Issue 2731283009: Swap ownership of RulesetService and the content delegate (Closed)
Patch Set: Swap ownership of RulesetService and the content delegate Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browser_process_impl.h
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 167ce60e835bce0b6dd2810a25f648331072027b..f7f38a9ddfd1ca6c35ad8b2ced93b1c30a7c5391 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -133,8 +133,8 @@ class BrowserProcessImpl : public BrowserProcess,
safe_browsing::SafeBrowsingService* safe_browsing_service() override;
safe_browsing::ClientSideDetectionService* safe_browsing_detection_service()
override;
- subresource_filter::RulesetService* subresource_filter_ruleset_service()
- override;
+ subresource_filter::ContentRulesetServiceDelegate*
+ subresource_filter_ruleset_service_delegate() override;
#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
void StartAutoupdateTimer() override;
@@ -263,8 +263,8 @@ class BrowserProcessImpl : public BrowserProcess,
scoped_refptr<safe_browsing::SafeBrowsingService> safe_browsing_service_;
bool created_subresource_filter_ruleset_service_;
- std::unique_ptr<subresource_filter::RulesetService>
- subresource_filter_ruleset_service_;
+ std::unique_ptr<subresource_filter::ContentRulesetServiceDelegate>
+ subresource_filter_ruleset_service_delegate_;
bool shutting_down_;

Powered by Google App Engine
This is Rietveld 408576698