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

Unified Diff: extensions/browser/api/web_request/web_request_api.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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: extensions/browser/api/web_request/web_request_api.h
diff --git a/extensions/browser/api/web_request/web_request_api.h b/extensions/browser/api/web_request/web_request_api.h
index 5a01458570548d644d6fe55e4e9b846b2bc479b3..ed5fbf77d395b2acd96be95d62e76ee6020b28ca 100644
--- a/extensions/browser/api/web_request/web_request_api.h
+++ b/extensions/browser/api/web_request/web_request_api.h
@@ -69,7 +69,7 @@ class WebRequestAPI : public BrowserContextKeyedAPI,
static BrowserContextKeyedAPIFactory<WebRequestAPI>* GetFactoryInstance();
// EventRouter::Observer overrides:
- virtual void OnListenerRemoved(const EventListenerInfo& details) OVERRIDE;
+ virtual void OnListenerRemoved(const EventListenerInfo& details) override;
private:
friend class BrowserContextKeyedAPIFactory<WebRequestAPI>;
@@ -498,7 +498,7 @@ class WebRequestInternalAddEventListenerFunction
virtual ~WebRequestInternalAddEventListenerFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class WebRequestInternalEventHandledFunction
@@ -522,7 +522,7 @@ class WebRequestInternalEventHandledFunction
const std::string& error);
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class WebRequestHandlerBehaviorChangedFunction
@@ -536,11 +536,11 @@ class WebRequestHandlerBehaviorChangedFunction
// ExtensionFunction:
virtual void GetQuotaLimitHeuristics(
- extensions::QuotaLimitHeuristics* heuristics) const OVERRIDE;
+ extensions::QuotaLimitHeuristics* heuristics) const override;
// Handle quota exceeded gracefully: Only warn the user but still execute the
// function.
- virtual void OnQuotaExceeded(const std::string& error) OVERRIDE;
- virtual bool RunSync() OVERRIDE;
+ virtual void OnQuotaExceeded(const std::string& error) override;
+ virtual bool RunSync() override;
};
#endif // EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_API_H_
« no previous file with comments | « extensions/browser/api/web_request/upload_data_presenter.h ('k') | extensions/browser/api/web_request/web_request_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698