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

Unified Diff: components/gcm_driver/gcm_driver_android.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/gcm_client_impl_unittest.cc ('k') | components/gcm_driver/gcm_driver_desktop.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/gcm_driver/gcm_driver_android.h
diff --git a/components/gcm_driver/gcm_driver_android.h b/components/gcm_driver/gcm_driver_android.h
index 3201a9e94c65a0d927d356a0758833450393681e..63fe52864a6a108fc858d3efd73bdabbeb04ded1 100644
--- a/components/gcm_driver/gcm_driver_android.h
+++ b/components/gcm_driver/gcm_driver_android.h
@@ -44,36 +44,36 @@ class GCMDriverAndroid : public GCMDriver {
static bool RegisterBindings(JNIEnv* env);
// GCMDriver implementation:
- virtual void OnSignedIn() OVERRIDE;
- virtual void Purge() OVERRIDE;
- virtual void Enable() OVERRIDE;
- virtual void AddConnectionObserver(GCMConnectionObserver* observer) OVERRIDE;
+ virtual void OnSignedIn() override;
+ virtual void Purge() override;
+ virtual void Enable() override;
+ virtual void AddConnectionObserver(GCMConnectionObserver* observer) override;
virtual void RemoveConnectionObserver(
- GCMConnectionObserver* observer) OVERRIDE;
- virtual void Disable() OVERRIDE;
- virtual GCMClient* GetGCMClientForTesting() const OVERRIDE;
- virtual bool IsStarted() const OVERRIDE;
- virtual bool IsConnected() const OVERRIDE;
+ GCMConnectionObserver* observer) override;
+ virtual void Disable() override;
+ virtual GCMClient* GetGCMClientForTesting() const override;
+ virtual bool IsStarted() const override;
+ virtual bool IsConnected() const override;
virtual void GetGCMStatistics(const GetGCMStatisticsCallback& callback,
- bool clear_logs) OVERRIDE;
+ bool clear_logs) override;
virtual void SetGCMRecording(const GetGCMStatisticsCallback& callback,
- bool recording) OVERRIDE;
+ bool recording) override;
virtual void SetAccountTokens(
- const std::vector<GCMClient::AccountTokenInfo>& account_tokens) OVERRIDE;
+ const std::vector<GCMClient::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;
protected:
// GCMDriver implementation:
- virtual GCMClient::Result EnsureStarted() OVERRIDE;
+ virtual GCMClient::Result EnsureStarted() override;
virtual void RegisterImpl(
const std::string& app_id,
- const std::vector<std::string>& sender_ids) OVERRIDE;
- virtual void UnregisterImpl(const std::string& app_id) OVERRIDE;
+ const std::vector<std::string>& sender_ids) override;
+ virtual void UnregisterImpl(const std::string& app_id) override;
virtual void SendImpl(const std::string& app_id,
const std::string& receiver_id,
- const GCMClient::OutgoingMessage& message) OVERRIDE;
+ const GCMClient::OutgoingMessage& message) override;
private:
base::android::ScopedJavaGlobalRef<jobject> java_ref_;
« no previous file with comments | « components/gcm_driver/gcm_client_impl_unittest.cc ('k') | components/gcm_driver/gcm_driver_desktop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698