blob: 13b717f946c4d543852c3c67d7cf8104771f5e22 [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.
#ifndef CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_
#define CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_
#include "base/compiler_specific.h"
#include "chrome/browser/sync/glue/synced_window_delegate.h"
#include "components/sessions/session_id.h"
class TabModel;
namespace browser_sync {
class SyncedTabDelegate;
class SyncedWindowDelegateAndroid : public browser_sync::SyncedWindowDelegate {
public:
explicit SyncedWindowDelegateAndroid(TabModel* tab_model);
virtual ~SyncedWindowDelegateAndroid();
// browser_sync::SyncedWindowDelegate implementation.
virtual bool HasWindow() const override;
virtual SessionID::id_type GetSessionId() const override;
virtual int GetTabCount() const override;
virtual int GetActiveIndex() const override;
virtual bool IsApp() const override;
virtual bool IsTypeTabbed() const override;
virtual bool IsTypePopup() const override;
virtual bool IsTabPinned(const SyncedTabDelegate* tab) const override;
virtual SyncedTabDelegate* GetTabAt(int index) const override;
virtual SessionID::id_type GetTabIdAt(int index) const override;
virtual bool IsSessionRestoreInProgress() const override;
private:
TabModel* tab_model_;
DISALLOW_COPY_AND_ASSIGN(SyncedWindowDelegateAndroid);
};
} // namespace browser_sync
#endif // CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_