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

Unified Diff: components/gcm_driver/gcm_account_mapper_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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 | « components/gcm_driver/gcm_account_mapper.h ('k') | components/gcm_driver/gcm_channel_status_request.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/gcm_driver/gcm_account_mapper_unittest.cc
diff --git a/components/gcm_driver/gcm_account_mapper_unittest.cc b/components/gcm_driver/gcm_account_mapper_unittest.cc
index 718597937f4756fb3fd50fc363d0ef223cd09057..58fd82540c071725c1b3ba11bcf904da94592d27 100644
--- a/components/gcm_driver/gcm_account_mapper_unittest.cc
+++ b/components/gcm_driver/gcm_account_mapper_unittest.cc
@@ -82,14 +82,14 @@ class CustomFakeGCMDriver : public FakeGCMDriver {
virtual ~CustomFakeGCMDriver();
virtual void UpdateAccountMapping(
- const AccountMapping& account_mapping) OVERRIDE;
- virtual void RemoveAccountMapping(const std::string& account_id) OVERRIDE;
+ const AccountMapping& account_mapping) override;
+ virtual void RemoveAccountMapping(const std::string& account_id) override;
virtual void AddAppHandler(const std::string& app_id,
- GCMAppHandler* handler) OVERRIDE;
- virtual void RemoveAppHandler(const std::string& app_id) OVERRIDE;
+ GCMAppHandler* handler) override;
+ virtual void RemoveAppHandler(const std::string& app_id) override;
virtual void RegisterImpl(
const std::string& app_id,
- const std::vector<std::string>& sender_ids) OVERRIDE;
+ const std::vector<std::string>& sender_ids) override;
void CompleteRegister(const std::string& registration_id,
GCMClient::Result result);
@@ -117,7 +117,7 @@ class CustomFakeGCMDriver : public FakeGCMDriver {
protected:
virtual void SendImpl(const std::string& app_id,
const std::string& receiver_id,
- const GCMClient::OutgoingMessage& message) OVERRIDE;
+ const GCMClient::OutgoingMessage& message) override;
private:
AccountMapping account_mapping_;
« no previous file with comments | « components/gcm_driver/gcm_account_mapper.h ('k') | components/gcm_driver/gcm_channel_status_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698