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

Unified Diff: components/gcm_driver/fake_gcm_client.h

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/fake_gcm_app_handler.h ('k') | components/gcm_driver/fake_gcm_client_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/gcm_driver/fake_gcm_client.h
diff --git a/components/gcm_driver/fake_gcm_client.h b/components/gcm_driver/fake_gcm_client.h
index fe06a79e880fb6093c01813acc93fc28cae43d2f..649e74e739e1cd2d4c421456d0e50162e1f8c00b 100644
--- a/components/gcm_driver/fake_gcm_client.h
+++ b/components/gcm_driver/fake_gcm_client.h
@@ -43,24 +43,24 @@ class FakeGCMClient : public GCMClient {
const scoped_refptr<net::URLRequestContextGetter>&
url_request_context_getter,
scoped_ptr<Encryptor> encryptor,
- Delegate* delegate) OVERRIDE;
- virtual void Start() OVERRIDE;
- virtual void Stop() OVERRIDE;
- virtual void CheckOut() OVERRIDE;
+ Delegate* delegate) override;
+ virtual void Start() override;
+ virtual void Stop() override;
+ virtual void CheckOut() override;
virtual void Register(const std::string& app_id,
- const std::vector<std::string>& sender_ids) OVERRIDE;
- virtual void Unregister(const std::string& app_id) OVERRIDE;
+ const std::vector<std::string>& sender_ids) override;
+ virtual void Unregister(const std::string& app_id) override;
virtual void Send(const std::string& app_id,
const std::string& receiver_id,
- const OutgoingMessage& message) OVERRIDE;
- virtual void SetRecording(bool recording) OVERRIDE;
- virtual void ClearActivityLogs() OVERRIDE;
- virtual GCMStatistics GetStatistics() const OVERRIDE;
+ const OutgoingMessage& message) override;
+ virtual void SetRecording(bool recording) override;
+ virtual void ClearActivityLogs() override;
+ virtual GCMStatistics GetStatistics() const override;
virtual void SetAccountTokens(
- const std::vector<AccountTokenInfo>& account_tokens) OVERRIDE;
+ const std::vector<AccountTokenInfo>& account_tokens) override;
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;
// Initiate the loading that has been delayed.
// Called on UI thread.
« no previous file with comments | « components/gcm_driver/fake_gcm_app_handler.h ('k') | components/gcm_driver/fake_gcm_client_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698