Chromium Code Reviews| Index: components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.h |
| diff --git a/components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.h b/components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..34d888a0adef049bddae4e2645e148d6b52f9024 |
| --- /dev/null |
| +++ b/components/ntp_snippets/sessions/foreign_sessions_suggestions_provider.h |
| @@ -0,0 +1,102 @@ |
| +// 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_SESSIONS_FOREIGN_SESSIONS_SUGGESTIONS_PROVIDER_H_ |
| +#define COMPONENTS_NTP_SNIPPETS_SESSIONS_FOREIGN_SESSIONS_SUGGESTIONS_PROVIDER_H_ |
| + |
| +#include <memory> |
| +#include <set> |
| +#include <string> |
| +#include <vector> |
| + |
| +#include "base/callback_forward.h" |
| +#include "base/macros.h" |
| +#include "components/ntp_snippets/category.h" |
| +#include "components/ntp_snippets/category_status.h" |
| +#include "components/ntp_snippets/content_suggestions_provider.h" |
| +#include "components/sessions/core/session_types.h" |
| +#include "components/sync_sessions/synced_session.h" |
| + |
| +class PrefRegistrySimple; |
| +class PrefService; |
| + |
| +namespace ntp_snippets { |
| + |
| +// Simple interface to get foreign tab data on demand and on change. |
| +class ForeignSessionsProvider { |
| + public: |
| + virtual ~ForeignSessionsProvider() {} |
| + virtual bool HasSessionsData() = 0; |
| + virtual std::vector<const sync_sessions::SyncedSession*> |
| + GetAllForeignSessions() = 0; |
| + // Should only be called at most once. |
| + virtual void SubscribeForForeignTabChange( |
| + const base::Closure& change_callback) = 0; |
| +}; |
| + |
| +// Provides content suggestions from foreign sessions. |
| +class ForeignSessionsSuggestionsProvider : public ContentSuggestionsProvider { |
| + public: |
| + ForeignSessionsSuggestionsProvider( |
| + ContentSuggestionsProvider::Observer* observer, |
| + CategoryFactory* category_factory, |
| + std::unique_ptr<ForeignSessionsProvider> foreign_sessions_provider, |
| + PrefService* pref_service); |
| + ~ForeignSessionsSuggestionsProvider() override; |
| + |
| + static void RegisterProfilePrefs(PrefRegistrySimple* registry); |
| + |
| + private: |
| + friend class ForeignSessionsSuggestionsProviderTest; |
| + |
| + // Collection of pointers to various sessions objects that contain a superset |
| + // of the information needed to create a single suggestion. |
| + struct SessionData { |
|
Marc Treib
2016/09/19 09:24:09
optional: I think it's sufficient to forward-decla
skym
2016/09/19 18:54:48
Oooh, great idea, Done.
|
| + const sync_sessions::SyncedSession* session; |
| + const sessions::SessionTab* tab; |
| + const sessions::SerializedNavigationEntry* navigation; |
| + bool operator<(const SessionData& other) const { |
| + // Note that SerializedNavigationEntry::timestamp() is never set to a |
| + // value, so always use SessionTab::timestamp() instead. |
| + // TODO(skym): It might be better if we sorted by recency of session, and |
| + // only then by recency of the tab. Right now this causes a single |
| + // device's tabs to be interleaved with another devices' tabs. |
| + return tab->timestamp > other.tab->timestamp; |
| + } |
| + }; |
| + |
| + // ContentSuggestionsProvider implementation. |
| + CategoryStatus GetCategoryStatus(Category category) override; |
| + CategoryInfo GetCategoryInfo(Category category) override; |
| + void DismissSuggestion(const std::string& suggestion_id) override; |
| + void FetchSuggestionImage(const std::string& suggestion_id, |
| + const ImageFetchedCallback& callback) override; |
| + void ClearHistory( |
| + base::Time begin, |
| + base::Time end, |
| + const base::Callback<bool(const GURL& url)>& filter) override; |
| + void ClearCachedSuggestions(Category category) override; |
| + void GetDismissedSuggestionsForDebugging( |
| + Category category, |
| + const DismissedSuggestionsCallback& callback) override; |
| + void ClearDismissedSuggestionsForDebugging(Category category) override; |
| + |
| + void OnForeignTabChange(); |
| + std::vector<ContentSuggestion> BuildSuggestions( |
| + const std::vector<const sync_sessions::SyncedSession*>& foreign_sessions); |
| + std::vector<SessionData> GetSuggestionCandidates( |
| + const std::vector<const sync_sessions::SyncedSession*>& foreign_sessions); |
| + ContentSuggestion BuildSuggestion(const SessionData& data); |
| + |
| + CategoryStatus category_status_; |
| + const Category provided_category_; |
| + std::unique_ptr<ForeignSessionsProvider> foreign_sessions_provider_; |
| + PrefService* pref_service_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ForeignSessionsSuggestionsProvider); |
| +}; |
| + |
| +} // namespace ntp_snippets |
| + |
| +#endif // COMPONENTS_NTP_SNIPPETS_SESSIONS_FOREIGN_SESSIONS_SUGGESTIONS_PROVIDER_H_ |