Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3999)

Unified Diff: chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h

Issue 15055003: Do not submit: high level overview patch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 62717c4ec3deaecdedf52d8b225d85d245197ff9..e09fdfda8d30b1855f45f6581dfec6254400586b 100644
--- a/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h
+++ b/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h
@@ -21,8 +21,8 @@ class TabContentsSyncedTabDelegate
virtual ~TabContentsSyncedTabDelegate();
// Methods from SyncedTabDelegate.
- virtual SessionID::id_type GetWindowId() const OVERRIDE;
- virtual SessionID::id_type GetSessionId() const OVERRIDE;
+ virtual const SessionID& GetWindowId() const OVERRIDE;
+ virtual const SessionID& GetSessionId() const OVERRIDE;
virtual bool IsBeingDestroyed() const OVERRIDE;
virtual Profile* profile() const OVERRIDE;
virtual std::string GetExtensionAppId() const OVERRIDE;
@@ -33,6 +33,9 @@ class TabContentsSyncedTabDelegate
virtual content::NavigationEntry* GetEntryAtIndex(int i) const OVERRIDE;
virtual content::NavigationEntry* GetActiveEntry() const OVERRIDE;
virtual bool IsPinned() const OVERRIDE;
+ virtual int64 GetSyncSessionId() const OVERRIDE;
+ virtual void SetSyncSessionId(const int64 sync_id) OVERRIDE;
+ virtual bool IsTabInMemory() const OVERRIDE;
private:
explicit TabContentsSyncedTabDelegate(content::WebContents* web_contents);

Powered by Google App Engine
This is Rietveld 408576698