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

Unified Diff: chrome/browser/services/gcm/push_messaging_service_impl.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/services/gcm/push_messaging_service_impl.h
diff --git a/chrome/browser/services/gcm/push_messaging_service_impl.h b/chrome/browser/services/gcm/push_messaging_service_impl.h
index ed6045773563dda4e6781733abc83443603fbf80..39d94c23aba367528a393719554b4d58d178a4d2 100644
--- a/chrome/browser/services/gcm/push_messaging_service_impl.h
+++ b/chrome/browser/services/gcm/push_messaging_service_impl.h
@@ -37,16 +37,16 @@ class PushMessagingServiceImpl : public content::PushMessagingService,
virtual ~PushMessagingServiceImpl();
// GCMAppHandler implementation.
- virtual void ShutdownHandler() OVERRIDE;
+ virtual void ShutdownHandler() override;
virtual void OnMessage(const std::string& app_id,
- const GCMClient::IncomingMessage& message) OVERRIDE;
- virtual void OnMessagesDeleted(const std::string& app_id) OVERRIDE;
+ const GCMClient::IncomingMessage& message) override;
+ virtual void OnMessagesDeleted(const std::string& app_id) override;
virtual void OnSendError(
const std::string& app_id,
- const GCMClient::SendErrorDetails& send_error_details) OVERRIDE;
+ const GCMClient::SendErrorDetails& send_error_details) override;
virtual void OnSendAcknowledged(const std::string& app_id,
- const std::string& message_id) OVERRIDE;
- virtual bool CanHandle(const std::string& app_id) const OVERRIDE;
+ const std::string& message_id) override;
+ virtual bool CanHandle(const std::string& app_id) const override;
// content::PushMessagingService implementation:
virtual void Register(
@@ -56,7 +56,7 @@ class PushMessagingServiceImpl : public content::PushMessagingService,
int renderer_id,
int render_frame_id,
bool user_gesture,
- const content::PushMessagingService::RegisterCallback& callback) OVERRIDE;
+ const content::PushMessagingService::RegisterCallback& callback) override;
private:
void DeliverMessageCallback(const PushMessagingApplicationId& application_id,

Powered by Google App Engine
This is Rietveld 408576698