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

Unified Diff: chrome/browser/sync/glue/synced_window_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
Index: chrome/browser/sync/glue/synced_window_delegate_android.h
diff --git a/chrome/browser/sync/glue/synced_window_delegate_android.h b/chrome/browser/sync/glue/synced_window_delegate_android.h
index 13b717f946c4d543852c3c67d7cf8104771f5e22..0c3d1f484952f5a202c5006eabe3a9506597c9e5 100644
--- a/chrome/browser/sync/glue/synced_window_delegate_android.h
+++ b/chrome/browser/sync/glue/synced_window_delegate_android.h
@@ -18,21 +18,21 @@ class SyncedTabDelegate;
class SyncedWindowDelegateAndroid : public browser_sync::SyncedWindowDelegate {
public:
explicit SyncedWindowDelegateAndroid(TabModel* tab_model);
- virtual ~SyncedWindowDelegateAndroid();
+ ~SyncedWindowDelegateAndroid() override;
// browser_sync::SyncedWindowDelegate implementation.
- virtual bool HasWindow() const override;
- virtual SessionID::id_type GetSessionId() const override;
- virtual int GetTabCount() const override;
- virtual int GetActiveIndex() const override;
- virtual bool IsApp() const override;
- virtual bool IsTypeTabbed() const override;
- virtual bool IsTypePopup() const override;
- virtual bool IsTabPinned(const SyncedTabDelegate* tab) const override;
- virtual SyncedTabDelegate* GetTabAt(int index) const override;
- virtual SessionID::id_type GetTabIdAt(int index) const override;
- virtual bool IsSessionRestoreInProgress() const override;
+ bool HasWindow() const override;
+ SessionID::id_type GetSessionId() const override;
+ int GetTabCount() const override;
+ int GetActiveIndex() const override;
+ bool IsApp() const override;
+ bool IsTypeTabbed() const override;
+ bool IsTypePopup() const override;
+ bool IsTabPinned(const SyncedTabDelegate* tab) const override;
+ SyncedTabDelegate* GetTabAt(int index) const override;
+ SessionID::id_type GetTabIdAt(int index) const override;
+ bool IsSessionRestoreInProgress() const override;
private:
TabModel* tab_model_;
« no previous file with comments | « chrome/browser/sync/glue/synced_tab_delegate_android.h ('k') | chrome/browser/sync/profile_sync_service_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698