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

Unified Diff: chrome/browser/browsing_data/browsing_data_remover.h

Issue 2731523004: Fix invalid cast to BrowsingDataRemoverImpl (Closed)
Patch Set: move KeyedService inheritance to BrowsingDataRemover Created 3 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/browsing_data/browsing_data_remover_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browsing_data/browsing_data_remover.h
diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h
index 335844db3a6a8095e331224a777b6b2953969082..b81112224289c466c76ef19da37235bbfae4b8fc 100644
--- a/chrome/browser/browsing_data/browsing_data_remover.h
+++ b/chrome/browser/browsing_data/browsing_data_remover.h
@@ -10,6 +10,7 @@
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/browsing_data/browsing_data_remover_delegate.h"
+#include "components/keyed_service/core/keyed_service.h"
namespace content {
class BrowsingDataFilterBuilder;
@@ -50,7 +51,7 @@ class BrowsingDataFilterBuilder;
//
// TODO(crbug.com/668114): BrowsingDataRemover does not currently support plugin
// data deletion. Use PluginDataRemover instead.
-class BrowsingDataRemover {
+class BrowsingDataRemover : public KeyedService {
public:
// Mask used for Remove.
enum RemoveDataMask {
« no previous file with comments | « no previous file | chrome/browser/browsing_data/browsing_data_remover_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698