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

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

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 e2e8a5114a2e7693a73ac57f9caeded5f466c09d..0ad0eb86173f56ae9cfe40eadc40f56af34ddd2d 100644
--- a/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h
+++ b/chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h
@@ -18,28 +18,28 @@ class TabContentsSyncedTabDelegate
: public browser_sync::SyncedTabDelegate,
public content::WebContentsUserData<TabContentsSyncedTabDelegate> {
public:
- virtual ~TabContentsSyncedTabDelegate();
+ ~TabContentsSyncedTabDelegate() override;
// Methods from SyncedTabDelegate.
- 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 ProfileIsSupervised() const override;
- virtual const std::vector<const content::NavigationEntry*>*
- GetBlockedNavigations() 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;
+ SessionID::id_type GetWindowId() const override;
+ SessionID::id_type GetSessionId() const override;
+ bool IsBeingDestroyed() const override;
+ Profile* profile() const override;
+ std::string GetExtensionAppId() const override;
+ int GetCurrentEntryIndex() const override;
+ int GetEntryCount() const override;
+ int GetPendingEntryIndex() const override;
+ content::NavigationEntry* GetPendingEntry() const override;
+ content::NavigationEntry* GetEntryAtIndex(int i) const override;
+ content::NavigationEntry* GetActiveEntry() const override;
+ bool ProfileIsSupervised() const override;
+ const std::vector<const content::NavigationEntry*>* GetBlockedNavigations()
+ const override;
+ bool IsPinned() const override;
+ bool HasWebContents() const override;
+ content::WebContents* GetWebContents() const override;
+ int GetSyncId() const override;
+ void SetSyncId(int sync_id) override;
private:
explicit TabContentsSyncedTabDelegate(content::WebContents* web_contents);

Powered by Google App Engine
This is Rietveld 408576698