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

Side by Side Diff: components/ntp_snippets/bookmarks/bookmark_suggestions_provider.h

Issue 2284393002: Add ClearHistory() to ContentSuggestionsService and its providers (Closed)
Patch Set: msramek@'s comments and filter. Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_NTP_SNIPPETS_BOOKMARKS_BOOKMARK_SUGGESTIONS_PROVIDER_H_ 5 #ifndef COMPONENTS_NTP_SNIPPETS_BOOKMARKS_BOOKMARK_SUGGESTIONS_PROVIDER_H_
6 #define COMPONENTS_NTP_SNIPPETS_BOOKMARKS_BOOKMARK_SUGGESTIONS_PROVIDER_H_ 6 #define COMPONENTS_NTP_SNIPPETS_BOOKMARKS_BOOKMARK_SUGGESTIONS_PROVIDER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 24 matching lines...) Expand all
35 35
36 static void RegisterProfilePrefs(PrefRegistrySimple* registry); 36 static void RegisterProfilePrefs(PrefRegistrySimple* registry);
37 37
38 private: 38 private:
39 // ContentSuggestionsProvider implementation. 39 // ContentSuggestionsProvider implementation.
40 CategoryStatus GetCategoryStatus(Category category) override; 40 CategoryStatus GetCategoryStatus(Category category) override;
41 CategoryInfo GetCategoryInfo(Category category) override; 41 CategoryInfo GetCategoryInfo(Category category) override;
42 void DismissSuggestion(const std::string& suggestion_id) override; 42 void DismissSuggestion(const std::string& suggestion_id) override;
43 void FetchSuggestionImage(const std::string& suggestion_id, 43 void FetchSuggestionImage(const std::string& suggestion_id,
44 const ImageFetchedCallback& callback) override; 44 const ImageFetchedCallback& callback) override;
45 void ClearHistory(base::Time begin,
46 base::Time end,
47 base::Callback<bool(const GURL& url)> filter) override;
Marc Treib 2016/08/30 13:01:56 This should be a const &
vitaliii 2016/08/30 14:17:48 Done.
45 void ClearCachedSuggestions(Category category) override; 48 void ClearCachedSuggestions(Category category) override;
46 void GetDismissedSuggestionsForDebugging( 49 void GetDismissedSuggestionsForDebugging(
47 Category category, 50 Category category,
48 const DismissedSuggestionsCallback& callback) override; 51 const DismissedSuggestionsCallback& callback) override;
49 void ClearDismissedSuggestionsForDebugging(Category category) override; 52 void ClearDismissedSuggestionsForDebugging(Category category) override;
50 53
51 // bookmarks::BookmarkModelObserver implementation. 54 // bookmarks::BookmarkModelObserver implementation.
52 void BookmarkModelLoaded(bookmarks::BookmarkModel* model, 55 void BookmarkModelLoaded(bookmarks::BookmarkModel* model,
53 bool ids_reassigned) override; 56 bool ids_reassigned) override;
54 void OnWillChangeBookmarkMetaInfo( 57 void OnWillChangeBookmarkMetaInfo(
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 // For six weeks after first installing M54, this is true and the 112 // For six weeks after first installing M54, this is true and the
110 // fallback implemented in BookmarkLastVisitUtils is activated. 113 // fallback implemented in BookmarkLastVisitUtils is activated.
111 bool creation_date_fallback_; 114 bool creation_date_fallback_;
112 115
113 DISALLOW_COPY_AND_ASSIGN(BookmarkSuggestionsProvider); 116 DISALLOW_COPY_AND_ASSIGN(BookmarkSuggestionsProvider);
114 }; 117 };
115 118
116 } // namespace ntp_snippets 119 } // namespace ntp_snippets
117 120
118 #endif // COMPONENTS_NTP_SNIPPETS_BOOKMARKS_BOOKMARK_SUGGESTIONS_PROVIDER_H_ 121 #endif // COMPONENTS_NTP_SNIPPETS_BOOKMARKS_BOOKMARK_SUGGESTIONS_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698