| 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
|
|
|