blob: 6da145d49666479ee40d040be0134d2be9e024ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// 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 "chrome/browser/sync/glue/synced_session.h"
#include "base/stl_util.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/navigation_entry.h"
namespace browser_sync {
SyncedSession::SyncedSession() : session_tag("invalid"),
device_type(TYPE_UNSET) {
}
SyncedSession::~SyncedSession() {
STLDeleteContainerPairSecondPointers(windows.begin(), windows.end());
}
// Note: if you modify this, make sure you modify
// SessionModelAssociator::ShouldSyncTab to ensure the logic matches.
bool ShouldSyncSessionTab(const SessionTab& tab) {
if (tab.navigations.empty())
return false;
bool found_valid_url = false;
for (size_t i = 0; i < tab.navigations.size(); ++i) {
if (tab.navigations.at(i).virtual_url().is_valid() &&
!tab.navigations.at(i).virtual_url().SchemeIs("chrome") &&
!tab.navigations.at(i).virtual_url().SchemeIsFile()) {
found_valid_url = true;
}
}
return found_valid_url;
}
bool SessionWindowHasNoTabsToSync(const SessionWindow& window) {
int num_populated = 0;
for (std::vector<SessionTab*>::const_iterator i = window.tabs.begin();
i != window.tabs.end(); ++i) {
const SessionTab* tab = *i;
if (ShouldSyncSessionTab(*tab))
num_populated++;
}
return (num_populated == 0);
}
} // namespace browser_sync
|