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

Unified Diff: components/ntp_snippets/snippet.h

Issue 2059203002: Add ContentSuggestion, ContentSuggestionCategory and ContentSuggestionProviderType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/snippet.h
diff --git a/components/ntp_snippets/snippet.h b/components/ntp_snippets/snippet.h
new file mode 100644
index 0000000000000000000000000000000000000000..c80f48fcd9534fa071bc0105a8a136cf13bbfbf4
--- /dev/null
+++ b/components/ntp_snippets/snippet.h
@@ -0,0 +1,110 @@
+// 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_SNIPPET_H_
+#define COMPONENTS_NTP_SNIPPETS_SNIPPET_H_
+
+#include <components/ntp_snippets/snippet_provider_type.h>
Marc Treib 2016/06/13 13:08:17 Remove this line
Philipp Keck 2016/06/13 14:13:14 Done.
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/macros.h"
+#include "base/time/time.h"
+#include "components/ntp_snippets/snippet_category.h"
+#include "components/ntp_snippets/snippet_provider_type.h"
+#include "url/gurl.h"
+
+namespace ntp_snippets {
+
+// A snippet for the new tab page, which can be an article, an offline page or
+// a snippet from another source.
+class Snippet {
+ public:
+ using PtrVector = std::vector<std::unique_ptr<Snippet>>;
+
+ // Creates a new snippet with the given |id|.
+ Snippet(const std::string& id,
+ const SnippetProviderType provider,
+ const SnippetCategory category);
+
+ ~Snippet();
+
+ // An ID for identifying the snippet. The ID is unique among all snippets
+ // from the same provider, so to determine a globally unique identifier,
+ // combine this ID with the provider type.
+ const std::string& id() const { return id_; }
+
+ // The provider that created this snippet.
+ SnippetProviderType provider() const { return provider_; }
+
+ // The category that this snippet belongs to.
+ SnippetCategory category() const { return category_; }
+ void set_category(const SnippetCategory category) { category_ = category; }
+
+ // The normal content URL where the content referenced by the snippet can be
+ // accessed.
+ const GURL& url() const { return url_; }
+ void set_url(const GURL& url) { url_ = url; }
+
+ // If available, this contains an URL to an AMP version of the same content.
+ // Otherwise, this is an empty GURL().
+ const GURL& amp_url() const { return amp_url_; }
+ void set_amp_url(const GURL& amp_url) { amp_url_ = amp_url; }
+
+ // Title of the snippet.
+ const std::string& title() const { return title_; }
+ void set_title(const std::string& title) { title_ = title; }
+
+ // Summary or relevant extract from the content.
+ const std::string& text_extract() const { return text_extract_; }
+ void set_text_extract(const std::string& text_extract) {
+ text_extract_ = text_extract;
+ }
+
+ // Link to an image representative of the content. Do not fetch this image
+ // directly.
Marc Treib 2016/06/13 13:08:17 Hm, does the UI need to know about the image URL?
Philipp Keck 2016/06/13 14:13:14 That's right. If we leave it up to the providers t
Marc Treib 2016/06/13 15:11:10 Acknowledged.
+ const GURL& salient_image_url() const { return salient_image_url_; }
+ void set_salient_image_url(const GURL& salient_image_url) {
+ salient_image_url_ = salient_image_url;
+ }
+
+ // When the page pointed by this text_extract was published.
Marc Treib 2016/06/13 13:08:17 Er, what? How is this related to the text extract?
Philipp Keck 2016/06/13 14:13:14 Done.
+ const base::Time& publish_date() const { return publish_date_; }
+ void set_publish_date(const base::Time& publish_date) {
+ publish_date_ = publish_date;
+ }
+
+ const std::string& publisher_name() const { return publisher_name_; }
+ void set_publisher_name(const std::string& publisher_name) {
+ publisher_name_ = publisher_name;
+ }
+
+ // TODO(pke) Remove the score from the Snippet class. The UI only uses
+ // it to track user clicks (histogram data). Instead, the providers should
+ // be informed about clicks and do appropriate logging themselves.
+ // IMPORTANT: The score may simply be 0 for text_extracts from providers which
Marc Treib 2016/06/13 13:08:17 Also here: Why text_extract?
Philipp Keck 2016/06/13 14:13:14 Done.
+ // cannot provide score values.
+ float score() const { return score_; }
+ void set_score(float score) { score_ = score; }
+
+ private:
+ std::string id_;
+ SnippetProviderType provider_;
+ SnippetCategory category_;
+ GURL url_;
+ GURL amp_url_;
+ std::string title_;
+ std::string text_extract_;
+ GURL salient_image_url_;
+ base::Time publish_date_;
+ std::string publisher_name_;
+ float score_;
+
+ DISALLOW_COPY_AND_ASSIGN(Snippet);
+};
+
+} // namespace ntp_snippets
+
+#endif // COMPONENTS_NTP_SNIPPETS_SNIPPET_H_

Powered by Google App Engine
This is Rietveld 408576698