1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNCED_SESSION_H_
6 #define CHROME_BROWSER_SYNC_GLUE_SYNCED_SESSION_H_
11 #include "base/time/time.h"
12 #include "components/sessions/session_id.h"
13 #include "components/sessions/session_types.h"
14 #include "sync/protocol/session_specifics.pb.h"
17 class NavigationEntry
;
20 namespace browser_sync
{
22 // Defines a synced session for use by session sync. A synced session is a
23 // list of windows along with a unique session identifer (tag) and meta-data
24 // about the device being synced.
25 struct SyncedSession
{
26 typedef std::map
<SessionID::id_type
, sessions::SessionWindow
*>
29 // The type of device.
30 // Please keep in sync with ForeignSessionHelper.java
45 // Unique tag for each session.
46 std::string session_tag
;
48 std::string session_name
;
50 // Type of device this session is from.
51 DeviceType device_type
;
53 // Last time this session was modified remotely.
54 base::Time modified_time
;
56 // Map of windows that make up this session. Windowws are owned by the session
57 // itself and free'd on destruction.
58 SyncedWindowMap windows
;
60 // Converts the DeviceType enum value to a string. This is used
61 // in the NTP handler for foreign sessions for matching session
62 // types to an icon style.
63 std::string
DeviceTypeAsString() const {
64 switch (device_type
) {
65 case SyncedSession::TYPE_WIN
:
67 case SyncedSession::TYPE_MACOSX
:
69 case SyncedSession::TYPE_LINUX
:
71 case SyncedSession::TYPE_CHROMEOS
:
73 case SyncedSession::TYPE_OTHER
:
75 case SyncedSession::TYPE_PHONE
:
77 case SyncedSession::TYPE_TABLET
:
84 // Convert this object to its protocol buffer equivalent. Shallow conversion,
85 // does not create SessionTab protobufs.
86 sync_pb::SessionHeader
ToSessionHeader() const;
89 DISALLOW_COPY_AND_ASSIGN(SyncedSession
);
92 // Control which foreign tabs we're interested in syncing/displaying. Checks
93 // that the tab has navigations and contains at least one valid url.
94 // Note: chrome:// and file:// are not considered valid urls (for syncing).
95 bool ShouldSyncSessionTab(const sessions::SessionTab
& tab
);
97 // Checks whether the window has tabs to sync. If no tabs to sync, it returns
98 // true, false otherwise.
99 bool SessionWindowHasNoTabsToSync(const sessions::SessionWindow
& window
);
101 } // namespace browser_sync
103 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCED_SESSION_H_