| Index: components/ntp_snippets/mock_content_suggestions_provider_observer.cc
|
| diff --git a/components/ntp_snippets/mock_content_suggestions_provider_observer.cc b/components/ntp_snippets/mock_content_suggestions_provider_observer.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..705f344e6e581f5c3be73690d4396bb94ba5dadd
|
| --- /dev/null
|
| +++ b/components/ntp_snippets/mock_content_suggestions_provider_observer.cc
|
| @@ -0,0 +1,25 @@
|
| +// 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.
|
| +
|
| +#include "components/ntp_snippets/mock_content_suggestions_provider_observer.h"
|
| +
|
| +namespace ntp_snippets {
|
| +
|
| +MockContentSuggestionsProviderObserver::
|
| + MockContentSuggestionsProviderObserver() {}
|
| +
|
| +MockContentSuggestionsProviderObserver::
|
| + ~MockContentSuggestionsProviderObserver() {}
|
| +
|
| +void MockContentSuggestionsProviderObserver::OnNewSuggestions(
|
| + ContentSuggestionsProvider* provider, Category category,
|
| + std::vector<ContentSuggestion> suggestions) {
|
| + std::list<ContentSuggestion> suggestions_list;
|
| + for (auto& suggestion : suggestions) {
|
| + suggestions_list.emplace_back(std::move(suggestion));
|
| + }
|
| + OnNewSuggestions(provider, category, suggestions_list);
|
| +}
|
| +
|
| +} // namespace ntp_snippets
|
|
|