blob: 124176908c50e4a4d9de644f7e50c008b4f80d80 [file] [log] [blame]
// Copyright 2018 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/sync_sessions/session_sync_service_impl.h"
#include <utility>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "components/sync/base/report_unrecoverable_error.h"
#include "components/sync/model_impl/client_tag_based_model_type_processor.h"
#include "components/sync_sessions/favicon_cache.h"
#include "components/sync_sessions/session_sync_bridge.h"
#include "components/sync_sessions/session_sync_prefs.h"
#include "components/sync_sessions/sync_sessions_client.h"
namespace sync_sessions {
SessionSyncServiceImpl::SessionSyncServiceImpl(
version_info::Channel channel,
std::unique_ptr<SyncSessionsClient> sessions_client)
: sessions_client_(std::move(sessions_client)) {
DCHECK(sessions_client_);
bridge_ = std::make_unique<sync_sessions::SessionSyncBridge>(
base::BindRepeating(&SessionSyncServiceImpl::NotifyForeignSessionUpdated,
base::Unretained(this)),
sessions_client_.get(),
std::make_unique<syncer::ClientTagBasedModelTypeProcessor>(
syncer::SESSIONS,
base::BindRepeating(&syncer::ReportUnrecoverableError, channel)));
}
SessionSyncServiceImpl::~SessionSyncServiceImpl() {}
syncer::GlobalIdMapper* SessionSyncServiceImpl::GetGlobalIdMapper() const {
return bridge_->GetGlobalIdMapper();
}
OpenTabsUIDelegate* SessionSyncServiceImpl::GetOpenTabsUIDelegate() {
if (!proxy_tabs_running_) {
return nullptr;
}
return bridge_->GetOpenTabsUIDelegate();
}
std::unique_ptr<base::CallbackList<void()>::Subscription>
SessionSyncServiceImpl::SubscribeToForeignSessionsChanged(
const base::RepeatingClosure& cb) {
return foreign_sessions_changed_callback_list_.Add(cb);
}
base::WeakPtr<syncer::ModelTypeControllerDelegate>
SessionSyncServiceImpl::GetControllerDelegate() {
return bridge_->change_processor()->GetControllerDelegate();
}
FaviconCache* SessionSyncServiceImpl::GetFaviconCache() {
return bridge_->GetFaviconCache();
}
void SessionSyncServiceImpl::ProxyTabsStateChanged(
syncer::DataTypeController::State state) {
const bool was_proxy_tabs_running = proxy_tabs_running_;
proxy_tabs_running_ = (state == syncer::DataTypeController::RUNNING);
if (proxy_tabs_running_ != was_proxy_tabs_running) {
NotifyForeignSessionUpdated();
}
}
void SessionSyncServiceImpl::SetSyncSessionsGUID(const std::string& guid) {
sessions_client_->GetSessionSyncPrefs()->SetSyncSessionsGUID(guid);
}
OpenTabsUIDelegate*
SessionSyncServiceImpl::GetUnderlyingOpenTabsUIDelegateForTest() {
return bridge_->GetOpenTabsUIDelegate();
}
void SessionSyncServiceImpl::NotifyForeignSessionUpdated() {
foreign_sessions_changed_callback_list_.Notify();
}
} // namespace sync_sessions