| 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..ee6dd768c580e16901e846ffb3707bb840c86d5f 100644
|
| --- a/components/ntp_snippets/content_suggestion.cc
|
| +++ b/components/ntp_snippets/content_suggestion.cc
|
| @@ -6,12 +6,12 @@
|
|
|
| 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 GURL& url)
|
| + : id_(id), url_(url), score_(0) {}
|
| +
|
| +ContentSuggestion::ContentSuggestion(ContentSuggestion&&) = default;
|
| +
|
| +ContentSuggestion& ContentSuggestion::operator=(ContentSuggestion&&) = default;
|
|
|
| ContentSuggestion::~ContentSuggestion() {}
|
|
|
|
|