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

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

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.h
diff --git a/chrome/browser/subresource_filter/subresource_filter_profile_context.h b/chrome/browser/subresource_filter/subresource_filter_profile_context.h
index 582e041d7a13cf72d5fddf398a15577b81a60027..572da530cf34b91b99d1da0bbd49ea0152dfb8d3 100644
--- a/chrome/browser/subresource_filter/subresource_filter_profile_context.h
+++ b/chrome/browser/subresource_filter/subresource_filter_profile_context.h
@@ -19,12 +19,15 @@ class SubresourceFilterProfileContext : public KeyedService {
explicit SubresourceFilterProfileContext(Profile* profile);
~SubresourceFilterProfileContext() override;
+ SubresourceFilterContentSettingsManager* settings_manager() {
+ return settings_manager_.get();
+ }
+
private:
// KeyedService:
void Shutdown() override;
- std::unique_ptr<SubresourceFilterContentSettingsManager>
- content_settings_manager_;
+ std::unique_ptr<SubresourceFilterContentSettingsManager> settings_manager_;
DISALLOW_COPY_AND_ASSIGN(SubresourceFilterProfileContext);
};

Powered by Google App Engine
This is Rietveld 408576698