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

Unified Diff: android_webview/browser/net/aw_url_request_job_factory.h

Issue 896913002: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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: android_webview/browser/net/aw_url_request_job_factory.h
diff --git a/android_webview/browser/net/aw_url_request_job_factory.h b/android_webview/browser/net/aw_url_request_job_factory.h
index db1cfae67d1d949727ba582dd2e58dfe17852e0a..458c1b023eac387ddae490078388eb7358bf5f60 100644
--- a/android_webview/browser/net/aw_url_request_job_factory.h
+++ b/android_webview/browser/net/aw_url_request_job_factory.h
@@ -23,7 +23,7 @@ namespace android_webview {
class AwURLRequestJobFactory : public net::URLRequestJobFactory {
public:
AwURLRequestJobFactory();
- virtual ~AwURLRequestJobFactory();
+ ~AwURLRequestJobFactory() override;
bool SetProtocolHandler(const std::string& scheme,
ProtocolHandler* protocol_handler);
@@ -43,9 +43,9 @@ class AwURLRequestJobFactory : public net::URLRequestJobFactory {
net::URLRequest* request,
net::NetworkDelegate* network_delegate) const override;
- virtual bool IsHandledProtocol(const std::string& scheme) const override;
- virtual bool IsHandledURL(const GURL& url) const override;
- virtual bool IsSafeRedirectTarget(const GURL& location) const override;
+ bool IsHandledProtocol(const std::string& scheme) const override;
+ bool IsHandledURL(const GURL& url) const override;
+ bool IsSafeRedirectTarget(const GURL& location) const override;
private:
// By default calls are forwarded to this factory, to avoid having to

Powered by Google App Engine
This is Rietveld 408576698