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

Unified Diff: chrome/browser/sync/glue/synced_tab_delegate.h

Issue 10990012: [Sync] Refactor handling of session tabs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Few more fixes Created 8 years, 3 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/sync/glue/synced_tab_delegate.h
diff --git a/chrome/browser/sync/glue/synced_tab_delegate.h b/chrome/browser/sync/glue/synced_tab_delegate.h
index be2ac03fb957a998cce19169c68c213c839eed7a..3355001b5f01b1843f1c16079a30ba2b0c7632ba 100644
--- a/chrome/browser/sync/glue/synced_tab_delegate.h
+++ b/chrome/browser/sync/glue/synced_tab_delegate.h
@@ -32,8 +32,7 @@ class SyncedTabDelegate {
// Method derived from TabContents.
- virtual bool HasExtensionAppId() const = 0;
- virtual const std::string& GetExtensionAppId() const = 0;
+ virtual std::string GetExtensionAppId() const = 0;
// Method from NavigationController
@@ -43,6 +42,8 @@ class SyncedTabDelegate {
virtual content::NavigationEntry* GetPendingEntry() const = 0;
virtual content::NavigationEntry* GetEntryAtIndex(int i) const = 0;
virtual content::NavigationEntry* GetActiveEntry() const = 0;
+
+ virtual bool IsPinned() const = 0;
};
} // namespace browser_sync

Powered by Google App Engine
This is Rietveld 408576698