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

Unified Diff: components/ntp_snippets/content_suggestions_provider.h

Issue 2102023002: Add ContentSuggestionsService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor corrections Created 4 years, 6 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: components/ntp_snippets/content_suggestions_provider.h
diff --git a/components/ntp_snippets/content_suggestions_provider.h b/components/ntp_snippets/content_suggestions_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..af801fb02bb0ac19518c9447eeec897e8a300815
--- /dev/null
+++ b/components/ntp_snippets/content_suggestions_provider.h
@@ -0,0 +1,83 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_PROVIDER_H_
+#define COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_PROVIDER_H_
+
+#include <string>
+#include <vector>
+
+#include "base/callback_forward.h"
+#include "components/ntp_snippets/content_suggestion.h"
+#include "components/ntp_snippets/content_suggestions_provider_type.h"
+
+namespace gfx {
+class Image;
+}
+
+namespace ntp_snippets {
+
+// Provides content suggestions from one particular source. The provided
+// suggestions can belong to different ContentSuggestionCategories. A provider
+// can be a keyed service, in which case it should notify the
+// ContentSuggestionsService through the observer before it shuts down.
+class ContentSuggestionsProvider {
+ public:
+ using ImageFetchedCallback = base::Callback<void(const gfx::Image&)>;
+
+ // The observer of a provider is notified when new data is available.
+ class Observer {
+ public:
+ // Called when the available content changed.
+ // If a provider provides suggestions of multiple categories, it must call
+ // this callback for every category individually. The |suggestions|
+ // parameter should always contain the full list of currently available
+ // suggestions of that category, i.e., passing an empty list will remove
+ // all suggestions of the given category for the provider. Note that to
+ // clear them from the UI immediately, the provider needs to shut down. The
+ // list must not contain ContentSuggestions assigned to a category other
+ // than the passed |changed_category|.
+ virtual void OnSuggestionsChanged(
Marc Treib 2016/06/30 10:36:53 Did we agree on a name here?
tschumann 2016/06/30 10:55:19 personally, I'd try to avoid the term 'change' in
Philipp Keck 2016/06/30 17:14:08 I also suggested OnContentChanged earlier. The na
Marc Treib 2016/07/01 09:15:32 IMO "OnSuggestionsAdded" would be a better (becaus
tschumann 2016/07/01 09:37:10 I see your point. My motivation was that the Obser
Philipp Keck 2016/07/01 13:00:03 Ok I understand your point now. It's basically a s
+ ContentSuggestionsProviderType provider_type,
+ ContentSuggestionCategory changed_category,
+ std::vector<ContentSuggestion> suggestions) = 0;
+
+ virtual void OnProviderShutdown(
tschumann 2016/06/30 10:55:19 can you document this function? When is it called?
Philipp Keck 2016/06/30 17:14:07 Done.
+ ContentSuggestionsProviderType provider_type) = 0;
+ };
+
+ // Returns the type of the provider.
+ virtual ContentSuggestionsProviderType GetProviderType() const = 0;
Marc Treib 2016/06/30 10:36:53 Hm, you could actually store the provider type her
Philipp Keck 2016/06/30 17:14:07 Done.
+
+ // Accessor for observer, which is notified about new available suggestions.
+ virtual void SetObserver(Observer* observer) = 0;
+
+ // Used only for debugging purposes. Clears all caches so that the next
+ // fetch starts from scratch.
+ virtual void ClearCachedSuggestions() = 0;
tschumann 2016/06/30 10:55:19 for functions which should not be called in produc
Philipp Keck 2016/06/30 17:14:07 Done.
+
+ // Used only for debugging purposes. Clears the cache of discarded
+ // suggestions, if present, so that no suggestions are suppressed. This does
+ // not necessarily make previously discarded suggestions reappear, as they may
+ // have been permanently deleted, depending on the provider implementation.
+ virtual void ClearDiscardedSuggestions() = 0;
+
+ // Discards the suggestion with the given ID. A provider needs to ensure that
Marc Treib 2016/06/30 10:36:53 nit: I'd put the "real" API methods before the deb
Philipp Keck 2016/06/30 17:14:07 Done.
+ // a once-discarded suggestion is never delivered again (through the
+ // Observer). There is no need to call the observer for an update after a
Marc Treib 2016/06/30 10:36:53 This formulation leaves it open whether the observ
Philipp Keck 2016/06/30 17:14:07 I didn't want to require that to happen because it
Marc Treib 2016/07/01 09:15:32 I'd slightly prefer sending no update, because the
Philipp Keck 2016/07/01 13:00:03 We have to answer this question twice (for both Ob
+ // suggestion has been discarded.
+ virtual void DiscardSuggestion(const std::string& suggestion_id) = 0;
+
+ // Fetches the image for the suggestion with the given ID and returns it
+ // through the callback. This fetch may occur locally or from the internet.
+ virtual void FetchSuggestionImage(const std::string& suggestion_id,
+ const ImageFetchedCallback& callback) = 0;
+
+ protected:
+ virtual ~ContentSuggestionsProvider() {}
+};
+
+} // namespace ntp_snippets
+
+#endif // COMPONENTS_NTP_SNIPPETS_CONTENT_SUGGESTIONS_PROVIDER_H_

Powered by Google App Engine
This is Rietveld 408576698