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

Unified Diff: sync/engine/get_updates_delegate.h

Issue 629733002: replace OVERRIDE and FINAL with override and final in sync/ (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
« no previous file with comments | « sync/engine/directory_update_handler_unittest.cc ('k') | sync/engine/get_updates_processor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/get_updates_delegate.h
diff --git a/sync/engine/get_updates_delegate.h b/sync/engine/get_updates_delegate.h
index d61f39ab3693d1c14a8b4af29928fc357fda5127..a4f999ab6ef9e05fe70ff14a0f127ef36938162c 100644
--- a/sync/engine/get_updates_delegate.h
+++ b/sync/engine/get_updates_delegate.h
@@ -47,17 +47,17 @@ class SYNC_EXPORT_PRIVATE NormalGetUpdatesDelegate : public GetUpdatesDelegate {
// Uses the member NudgeTracker to populate some fields of this GU message.
virtual void HelpPopulateGuMessage(
- sync_pb::GetUpdatesMessage* get_updates) const OVERRIDE;
+ sync_pb::GetUpdatesMessage* get_updates) const override;
// Applies pending updates on the appropriate data type threads.
virtual void ApplyUpdates(
ModelTypeSet gu_types,
sessions::StatusController* status,
- UpdateHandlerMap* update_handler_map) const OVERRIDE;
+ UpdateHandlerMap* update_handler_map) const override;
virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
base::Time timestamp,
- const sync_pb::ClientToServerMessage& request) const OVERRIDE;
+ const sync_pb::ClientToServerMessage& request) const override;
private:
DISALLOW_COPY_AND_ASSIGN(NormalGetUpdatesDelegate);
@@ -74,7 +74,7 @@ class SYNC_EXPORT_PRIVATE ConfigureGetUpdatesDelegate
// Sets the 'source' and 'origin' fields for this request.
virtual void HelpPopulateGuMessage(
- sync_pb::GetUpdatesMessage* get_updates) const OVERRIDE;
+ sync_pb::GetUpdatesMessage* get_updates) const override;
// Applies updates passively (ie. on the sync thread).
//
@@ -83,11 +83,11 @@ class SYNC_EXPORT_PRIVATE ConfigureGetUpdatesDelegate
virtual void ApplyUpdates(
ModelTypeSet gu_types,
sessions::StatusController* status,
- UpdateHandlerMap* update_handler_map) const OVERRIDE;
+ UpdateHandlerMap* update_handler_map) const override;
virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
base::Time timestamp,
- const sync_pb::ClientToServerMessage& request) const OVERRIDE;
+ const sync_pb::ClientToServerMessage& request) const override;
private:
DISALLOW_COPY_AND_ASSIGN(ConfigureGetUpdatesDelegate);
@@ -105,17 +105,17 @@ class SYNC_EXPORT_PRIVATE PollGetUpdatesDelegate : public GetUpdatesDelegate {
// Sets the 'source' and 'origin' to indicate this is a poll request.
virtual void HelpPopulateGuMessage(
- sync_pb::GetUpdatesMessage* get_updates) const OVERRIDE;
+ sync_pb::GetUpdatesMessage* get_updates) const override;
// Applies updates on the appropriate data type thread.
virtual void ApplyUpdates(
ModelTypeSet gu_types,
sessions::StatusController* status,
- UpdateHandlerMap* update_handler_map) const OVERRIDE;
+ UpdateHandlerMap* update_handler_map) const override;
virtual scoped_ptr<ProtocolEvent> GetNetworkRequestEvent(
base::Time timestamp,
- const sync_pb::ClientToServerMessage& request) const OVERRIDE;
+ const sync_pb::ClientToServerMessage& request) const override;
private:
DISALLOW_COPY_AND_ASSIGN(PollGetUpdatesDelegate);
};
« no previous file with comments | « sync/engine/directory_update_handler_unittest.cc ('k') | sync/engine/get_updates_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698