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

Unified Diff: components/ntp_snippets/mock_content_suggestions_provider_observer.h

Issue 2228553003: a provider of Physical Web pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits. Created 4 years, 4 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/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..cd1edd7156ec263b5d6a7ce33c2a687d6afb9ab9
--- /dev/null
+++ b/components/ntp_snippets/mock_content_suggestions_provider_observer.h
@@ -0,0 +1,39 @@
+// 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 <list>
+#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();
+
+ // Call of this function is redirected to the mock function OnNewSuggestions
+ // which takes const list of suggestions. MOCK_METHOD cannot be applied here
+ // directly, since gMock does not support movable-only types such as
+ // ContentSuggestion.
tschumann 2016/08/11 15:06:57 please add: [which takes const list of suggestions
+ void OnNewSuggestions(ContentSuggestionsProvider* provider, Category category,
+ std::vector<ContentSuggestion> suggestions) override;
+
+ MOCK_METHOD3(OnNewSuggestions,
+ void(ContentSuggestionsProvider* provider, Category category,
+ const std::list<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_
« no previous file with comments | « components/ntp_snippets/features.cc ('k') | components/ntp_snippets/mock_content_suggestions_provider_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698