summaryrefslogtreecommitdiffstats
path: root/components/gcm_driver/gcm_account_mapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'components/gcm_driver/gcm_account_mapper.h')
-rw-r--r--components/gcm_driver/gcm_account_mapper.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/gcm_driver/gcm_account_mapper.h b/components/gcm_driver/gcm_account_mapper.h
index fd1ca64..39d18b5 100644
--- a/components/gcm_driver/gcm_account_mapper.h
+++ b/components/gcm_driver/gcm_account_mapper.h
@@ -40,16 +40,16 @@ class GCMAccountMapper : public GCMAppHandler {
const std::vector<GCMClient::AccountTokenInfo>& account_tokens);
// Implementation of GCMAppHandler:
- 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;
private:
friend class GCMAccountMapperTest;