blob: a096259f93e191e7ade2cbd90ac0ffe0dfad399b [file] [log] [blame]
// Copyright (c) 2012 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/synced_session.h"
namespace sync_sessions {
SyncedSessionWindow::SyncedSessionWindow() {}
SyncedSessionWindow::~SyncedSessionWindow() {}
sync_pb::SessionWindow SyncedSessionWindow::ToSessionWindowProto() const {
sync_pb::SessionWindow sync_data;
sync_data.set_browser_type(window_type);
sync_data.set_window_id(wrapped_window.window_id.id());
sync_data.set_selected_tab_index(wrapped_window.selected_tab_index);
for (const auto& tab : wrapped_window.tabs)
sync_data.add_tab(tab->tab_id.id());
return sync_data;
}
SyncedSession::SyncedSession()
: session_tag("invalid"), device_type(sync_pb::SyncEnums::TYPE_UNSET) {}
SyncedSession::~SyncedSession() {}
sync_pb::SessionHeader SyncedSession::ToSessionHeaderProto() const {
sync_pb::SessionHeader header;
for (const auto& window_pair : windows) {
sync_pb::SessionWindow* w = header.add_window();
w->CopyFrom(window_pair.second->ToSessionWindowProto());
}
header.set_client_name(session_name);
header.set_device_type(device_type);
return header;
}
} // namespace sync_sessions