| Index: components/ntp_snippets/content_suggestion.cc
|
| diff --git a/components/ntp_snippets/content_suggestion.cc b/components/ntp_snippets/content_suggestion.cc
|
| index 0fa4f0cd9dde852a8d368ad0476df7c59c1faadf..2ce904ffb96a13d1490fb2a0f7142dc57abb28ab 100644
|
| --- a/components/ntp_snippets/content_suggestion.cc
|
| +++ b/components/ntp_snippets/content_suggestion.cc
|
| @@ -6,12 +6,14 @@
|
|
|
| namespace ntp_snippets {
|
|
|
| -ContentSuggestion::ContentSuggestion(
|
| - const std::string& id,
|
| - const ContentSuggestionsProviderType provider,
|
| - const ContentSuggestionCategory category,
|
| - const GURL& url)
|
| - : id_(id), provider_(provider), category_(category), url_(url), score_(0) {}
|
| +ContentSuggestion::ContentSuggestion(const std::string& id,
|
| + const ContentSuggestionCategory category,
|
| + const GURL& url)
|
| + : id_(id), category_(category), url_(url), score_(0) {}
|
| +
|
| +ContentSuggestion::ContentSuggestion(ContentSuggestion&&) = default;
|
| +
|
| +ContentSuggestion& ContentSuggestion::operator=(ContentSuggestion&&) = default;
|
|
|
| ContentSuggestion::~ContentSuggestion() {}
|
|
|
|
|