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

Unified Diff: chrome/browser/sync/sessions/sessions_sync_manager.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/sync/sessions/sessions_sync_manager.h
diff --git a/chrome/browser/sync/sessions/sessions_sync_manager.h b/chrome/browser/sync/sessions/sessions_sync_manager.h
index 01ecf900996664daeabbf1353da296dff945f3a3..4f42c80862fa0bdbe09b28c134cad139d11833a3 100644
--- a/chrome/browser/sync/sessions/sessions_sync_manager.h
+++ b/chrome/browser/sync/sessions/sessions_sync_manager.h
@@ -96,33 +96,33 @@ class SessionsSyncManager : public syncer::SyncableService,
syncer::ModelType type,
const syncer::SyncDataList& initial_sync_data,
scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
- scoped_ptr<syncer::SyncErrorFactory> error_handler) OVERRIDE;
- virtual void StopSyncing(syncer::ModelType type) OVERRIDE;
+ scoped_ptr<syncer::SyncErrorFactory> error_handler) override;
+ virtual void StopSyncing(syncer::ModelType type) override;
virtual syncer::SyncDataList GetAllSyncData(
- syncer::ModelType type) const OVERRIDE;
+ syncer::ModelType type) const override;
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const syncer::SyncChangeList& change_list) OVERRIDE;
+ const syncer::SyncChangeList& change_list) override;
// OpenTabsUIDelegate implementation.
virtual bool GetSyncedFaviconForPageURL(
const std::string& pageurl,
- scoped_refptr<base::RefCountedMemory>* favicon_png) const OVERRIDE;
+ scoped_refptr<base::RefCountedMemory>* favicon_png) const override;
virtual bool GetAllForeignSessions(
- std::vector<const SyncedSession*>* sessions) OVERRIDE;
+ std::vector<const SyncedSession*>* sessions) override;
virtual bool GetForeignSession(
const std::string& tag,
- std::vector<const SessionWindow*>* windows) OVERRIDE;
+ std::vector<const SessionWindow*>* windows) override;
virtual bool GetForeignTab(const std::string& tag,
const SessionID::id_type tab_id,
- const SessionTab** tab) OVERRIDE;
- virtual void DeleteForeignSession(const std::string& tag) OVERRIDE;
- virtual bool GetLocalSession(const SyncedSession* * local_session) OVERRIDE;
+ const SessionTab** tab) override;
+ virtual void DeleteForeignSession(const std::string& tag) override;
+ virtual bool GetLocalSession(const SyncedSession* * local_session) override;
// LocalSessionEventHandler implementation.
- virtual void OnLocalTabModified(SyncedTabDelegate* modified_tab) OVERRIDE;
+ virtual void OnLocalTabModified(SyncedTabDelegate* modified_tab) override;
virtual void OnFaviconPageUrlsUpdated(
- const std::set<GURL>& updated_favicon_page_urls) OVERRIDE;
+ const std::set<GURL>& updated_favicon_page_urls) override;
// Returns the tag used to uniquely identify this machine's session in the
// sync model.

Powered by Google App Engine
This is Rietveld 408576698