#ifndef CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_
#define CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_
#include "base/compiler_specific.h"
#include "chrome/browser/sync/glue/synced_tab_delegate.h"
#include "content/public/browser/web_contents_user_data.h"
namespace content {
class WebContents;
}
class TabAndroid;
namespace browser_sync {
class SyncedTabDelegateAndroid : public browser_sync::SyncedTabDelegate {
public:
explicit SyncedTabDelegateAndroid(TabAndroid* owning_tab_);
virtual ~SyncedTabDelegateAndroid();
virtual SessionID::id_type GetWindowId() const OVERRIDE;
virtual SessionID::id_type GetSessionId() const OVERRIDE;
virtual bool IsBeingDestroyed() const OVERRIDE;
virtual Profile* profile() const OVERRIDE;
virtual std::string GetExtensionAppId() const OVERRIDE;
virtual int GetCurrentEntryIndex() const OVERRIDE;
virtual int GetEntryCount() const OVERRIDE;
virtual int GetPendingEntryIndex() const OVERRIDE;
virtual content::NavigationEntry* GetPendingEntry() const OVERRIDE;
virtual content::NavigationEntry* GetEntryAtIndex(int i) const OVERRIDE;
virtual content::NavigationEntry* GetActiveEntry() const OVERRIDE;
virtual bool IsPinned() const OVERRIDE;
virtual bool HasWebContents() const OVERRIDE;
virtual content::WebContents* GetWebContents() const OVERRIDE;
virtual int GetSyncId() const OVERRIDE;
virtual void SetSyncId(int sync_id) OVERRIDE;
virtual bool ProfileIsManaged() const OVERRIDE;
virtual const std::vector<const content::NavigationEntry*>*
GetBlockedNavigations() const OVERRIDE;
virtual void SetWebContents(content::WebContents* web_contents);
virtual void ResetWebContents();
private:
content::WebContents* web_contents_;
TabAndroid* tab_android_;
DISALLOW_COPY_AND_ASSIGN(SyncedTabDelegateAndroid);
};
}
#endif