Chromium Code Reviews| Index: components/ntp_snippets/mock_content_suggestions_provider_observer.h |
| diff --git a/components/ntp_snippets/mock_content_suggestions_provider_observer.h b/components/ntp_snippets/mock_content_suggestions_provider_observer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..98a8180022249429aca708a5f6571e58f34fbb2e |
| --- /dev/null |
| +++ b/components/ntp_snippets/mock_content_suggestions_provider_observer.h |
| @@ -0,0 +1,37 @@ |
| +// 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_MOCK_CONTENT_SUGGESTIONS_PROVIDER_OBSERVER_H_ |
| +#define COMPONENTS_NTP_SNIPPETS_MOCK_CONTENT_SUGGESTIONS_PROVIDER_OBSERVER_H_ |
| + |
| +#include <vector> |
| + |
| +#include "components/ntp_snippets/content_suggestions_provider.h" |
| +#include "testing/gmock/include/gmock/gmock.h" |
| + |
| +namespace ntp_snippets { |
| + |
| +class MockContentSuggestionsProviderObserver |
| + : public ContentSuggestionsProvider::Observer { |
| + public: |
| + MockContentSuggestionsProviderObserver(); |
| + ~MockContentSuggestionsProviderObserver(); |
| + |
| + void OnNewSuggestions(ContentSuggestionsProvider* provider, |
|
Marc Treib
2016/08/11 12:53:09
This pattern (manually overridden method + mock be
vitaliii
2016/08/11 14:29:58
Done.
|
| + Category category, |
| + std::vector<ContentSuggestion> suggestions) override; |
| + |
| + MOCK_METHOD3(OnNewSuggestionsConst, |
| + void(ContentSuggestionsProvider* provider, |
| + Category category, |
| + const std::vector<ContentSuggestion>& suggestions)); |
| + MOCK_METHOD3(OnCategoryStatusChanged, |
| + void(ContentSuggestionsProvider* provider, |
| + Category category, |
| + CategoryStatus new_status)); |
| +}; |
| + |
| +} // namespace ntp_snippets |
| + |
| +#endif // COMPONENTS_NTP_SNIPPETS_MOCK_CONTENT_SUGGESTIONS_PROVIDER_OBSERVER_H_ |