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

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: fix 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..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_

Powered by Google App Engine
This is Rietveld 408576698