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

Unified Diff: android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h

Issue 623833003: replace OVERRIDE and FINAL with override and final in android_webview/ (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: android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h
diff --git a/android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h b/android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h
index 2d886607e43c7feed72ae3da05268d3c91a998e0..25ec4ffb7b8ab67734e25a9dd1ad9ca139ae766e 100644
--- a/android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h
+++ b/android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h
@@ -34,7 +34,7 @@ class AwResourceDispatcherHostDelegate
content::ResourceContext* resource_context,
content::AppCacheService* appcache_service,
content::ResourceType resource_type,
- ScopedVector<content::ResourceThrottle>* throttles) OVERRIDE;
+ ScopedVector<content::ResourceThrottle>* throttles) override;
virtual void DownloadStarting(
net::URLRequest* request,
content::ResourceContext* resource_context,
@@ -43,24 +43,24 @@ class AwResourceDispatcherHostDelegate
int request_id,
bool is_content_initiated,
bool must_download,
- ScopedVector<content::ResourceThrottle>* throttles) OVERRIDE;
+ ScopedVector<content::ResourceThrottle>* throttles) override;
virtual content::ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
net::AuthChallengeInfo* auth_info,
- net::URLRequest* request) OVERRIDE;
+ net::URLRequest* request) override;
virtual bool HandleExternalProtocol(const GURL& url,
int child_id,
- int route_id) OVERRIDE;
+ int route_id) override;
virtual void OnResponseStarted(
net::URLRequest* request,
content::ResourceContext* resource_context,
content::ResourceResponse* response,
- IPC::Sender* sender) OVERRIDE;
+ IPC::Sender* sender) override;
virtual void OnRequestRedirected(
const GURL& redirect_url,
net::URLRequest* request,
content::ResourceContext* resource_context,
- content::ResourceResponse* response) OVERRIDE;
+ content::ResourceResponse* response) override;
void RemovePendingThrottleOnIoThread(IoThreadClientThrottle* throttle);

Powered by Google App Engine
This is Rietveld 408576698