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

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

Issue 885283009: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « chrome/browser/speech/tts_android.h ('k') | chrome/browser/sync/glue/synced_window_delegate_android.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/synced_tab_delegate_android.h
diff --git a/chrome/browser/sync/glue/synced_tab_delegate_android.h b/chrome/browser/sync/glue/synced_tab_delegate_android.h
index cd485ea376bf3a3d2741e55945946ad08a12d673..15168727b57e1b9f717637469a6a3ca2fd97f40f 100644
--- a/chrome/browser/sync/glue/synced_tab_delegate_android.h
+++ b/chrome/browser/sync/glue/synced_tab_delegate_android.h
@@ -22,31 +22,31 @@ namespace browser_sync {
class SyncedTabDelegateAndroid : public browser_sync::SyncedTabDelegate {
public:
explicit SyncedTabDelegateAndroid(TabAndroid* owning_tab_);
- virtual ~SyncedTabDelegateAndroid();
+ ~SyncedTabDelegateAndroid() 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 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 IsPinned() const override;
+ bool HasWebContents() const override;
+ content::WebContents* GetWebContents() const override;
+ int GetSyncId() const override;
+ void SetSyncId(int sync_id) override;
// Supervised user related methods.
- virtual bool ProfileIsSupervised() const override;
- virtual const std::vector<const content::NavigationEntry*>*
- GetBlockedNavigations() const override;
+ bool ProfileIsSupervised() const override;
+ const std::vector<const content::NavigationEntry*>* GetBlockedNavigations()
+ const override;
// Set the web contents for this tab. Also creates
// TabContentsSyncedTabDelegate for this tab.
« no previous file with comments | « chrome/browser/speech/tts_android.h ('k') | chrome/browser/sync/glue/synced_window_delegate_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698