Index: chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h |
diff --git a/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h b/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h |
index d58b13020f312f022a2260ef356b34962622a75c..68486a5f3ad6cc706f3b47d77d468d894991f9c9 100644 |
--- a/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h |
+++ b/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h |
@@ -37,12 +37,15 @@ class TabContentsSyncedTabDelegate |
GetBlockedNavigations() const OVERRIDE; |
virtual bool IsPinned() const OVERRIDE; |
virtual bool HasWebContents() const OVERRIDE; |
+ virtual int64 GetSyncId() const OVERRIDE; |
+ virtual void SetSyncId(int64 sync_id) OVERRIDE; |
private: |
explicit TabContentsSyncedTabDelegate(content::WebContents* web_contents); |
friend class content::WebContentsUserData<TabContentsSyncedTabDelegate>; |
content::WebContents* web_contents_; |
+ int64 sync_session_id_; |
DISALLOW_COPY_AND_ASSIGN(TabContentsSyncedTabDelegate); |
}; |