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

Unified Diff: chrome/browser/subresource_filter/subresource_filter_profile_context.cc

Issue 2795053002: [subresource_filter] Implement the "Smart" UI on Android (Closed)
Patch Set: minor tweaks Created 3 years, 7 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/subresource_filter/subresource_filter_profile_context.cc
diff --git a/chrome/browser/subresource_filter/subresource_filter_profile_context.cc b/chrome/browser/subresource_filter/subresource_filter_profile_context.cc
index b88de345556ff477c4a8f9bd83e64ad1e8872c4b..2978f248a17b943935f714281efd6b56053bbe69 100644
--- a/chrome/browser/subresource_filter/subresource_filter_profile_context.cc
+++ b/chrome/browser/subresource_filter/subresource_filter_profile_context.cc
@@ -9,11 +9,11 @@
SubresourceFilterProfileContext::SubresourceFilterProfileContext(
Profile* profile)
- : content_settings_manager_(
+ : settings_manager_(
base::MakeUnique<SubresourceFilterContentSettingsManager>(profile)) {}
SubresourceFilterProfileContext::~SubresourceFilterProfileContext() {}
void SubresourceFilterProfileContext::Shutdown() {
- content_settings_manager_.reset();
+ settings_manager_.reset();
}

Powered by Google App Engine
This is Rietveld 408576698