1 // Copyright (c) 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 #include "chrome/browser/sync/glue/synced_window_delegate_android.h"
7 #include "chrome/browser/android/tab_android.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/sync/glue/synced_tab_delegate_android.h"
10 #include "chrome/browser/ui/android/tab_model/tab_model.h"
11 #include "chrome/browser/ui/android/tab_model/tab_model_list.h"
12 #include "content/public/browser/web_contents.h"
14 namespace browser_sync
{
16 // SyncedWindowDelegate implementations
18 const std::set
<SyncedWindowDelegate
*>
19 SyncedWindowDelegate::GetSyncedWindowDelegates() {
20 std::set
<SyncedWindowDelegate
*> synced_window_delegates
;
21 for (TabModelList::const_iterator i
= TabModelList::begin();
22 i
!= TabModelList::end(); ++i
) {
23 synced_window_delegates
.insert((*i
)->GetSyncedWindowDelegate());
25 return synced_window_delegates
;
28 const SyncedWindowDelegate
*
29 SyncedWindowDelegate::FindSyncedWindowDelegateWithId(
30 SessionID::id_type session_id
) {
31 TabModel
* tab_model
= TabModelList::FindTabModelWithId(
34 // In case we don't find the browser (e.g. for Developer Tools).
35 return tab_model
? tab_model
->GetSyncedWindowDelegate() : NULL
;
38 // SyncedWindowDelegateAndroid implementations
40 SyncedWindowDelegateAndroid::SyncedWindowDelegateAndroid(
42 : tab_model_(tab_model
) {}
44 SyncedWindowDelegateAndroid::~SyncedWindowDelegateAndroid() {}
46 bool SyncedWindowDelegateAndroid::HasWindow() const {
47 return !tab_model_
->IsOffTheRecord();
50 SessionID::id_type
SyncedWindowDelegateAndroid::GetSessionId() const {
51 return tab_model_
->GetSessionId();
54 int SyncedWindowDelegateAndroid::GetTabCount() const {
55 return tab_model_
->GetTabCount();
58 int SyncedWindowDelegateAndroid::GetActiveIndex() const {
59 return tab_model_
->GetActiveIndex();
62 bool SyncedWindowDelegateAndroid::IsApp() const {
66 bool SyncedWindowDelegateAndroid::IsTypeTabbed() const {
70 bool SyncedWindowDelegateAndroid::IsTypePopup() const {
74 bool SyncedWindowDelegateAndroid::IsTabPinned(
75 const SyncedTabDelegate
* tab
) const {
79 SyncedTabDelegate
* SyncedWindowDelegateAndroid::GetTabAt(int index
) const {
80 // After a restart, it is possible for the Tab to be null during startup.
81 TabAndroid
* tab
= tab_model_
->GetTabAt(index
);
82 return tab
? tab
->GetSyncedTabDelegate() : NULL
;
85 SessionID::id_type
SyncedWindowDelegateAndroid::GetTabIdAt(int index
) const {
86 SyncedTabDelegate
* tab
= GetTabAt(index
);
87 return tab
? tab
->GetSessionId() : -1;
90 bool SyncedWindowDelegateAndroid::IsSessionRestoreInProgress() const {
91 return tab_model_
->IsSessionRestoreInProgress();
94 } // namespace browser_sync