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

Unified Diff: chrome/browser/extensions/api/copresence/copresence_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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
Index: chrome/browser/extensions/api/copresence/copresence_api.h
diff --git a/chrome/browser/extensions/api/copresence/copresence_api.h b/chrome/browser/extensions/api/copresence/copresence_api.h
index 83fb5dbdb7067c1b9beb5cd25e0515a636ff9410..5776fd79d12654929cda55498774ca5d161d6f1b 100644
--- a/chrome/browser/extensions/api/copresence/copresence_api.h
+++ b/chrome/browser/extensions/api/copresence/copresence_api.h
@@ -31,7 +31,7 @@ class CopresenceService : public BrowserContextKeyedAPI,
virtual ~CopresenceService();
// BrowserContextKeyedAPI implementation.
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
// These accessors will always return an object (except during shutdown).
// If the object doesn't exist, they will create one first.
@@ -59,11 +59,11 @@ class CopresenceService : public BrowserContextKeyedAPI,
virtual void HandleMessages(
const std::string& app_id,
const std::string& subscription_id,
- const std::vector<copresence::Message>& message) OVERRIDE;
- virtual net::URLRequestContextGetter* GetRequestContext() const OVERRIDE;
- virtual const std::string GetPlatformVersionString() const OVERRIDE;
- virtual const std::string GetAPIKey() const OVERRIDE;
- virtual copresence::WhispernetClient* GetWhispernetClient() OVERRIDE;
+ const std::vector<copresence::Message>& message) override;
+ virtual net::URLRequestContextGetter* GetRequestContext() const override;
+ virtual const std::string GetPlatformVersionString() const override;
+ virtual const std::string GetAPIKey() const override;
+ virtual copresence::WhispernetClient* GetWhispernetClient() override;
// BrowserContextKeyedAPI implementation.
static const char* service_name() { return "CopresenceService"; }
@@ -90,7 +90,7 @@ class CopresenceExecuteFunction : public ChromeUIThreadExtensionFunction {
protected:
virtual ~CopresenceExecuteFunction() {}
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
private:
void SendResult(copresence::CopresenceStatus status);
@@ -102,7 +102,7 @@ class CopresenceSetApiKeyFunction : public ChromeUIThreadExtensionFunction {
protected:
virtual ~CopresenceSetApiKeyFunction() {}
- virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
+ virtual ExtensionFunction::ResponseAction Run() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698