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

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

Issue 882883007: 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, 11 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 25ec4ffb7b8ab67734e25a9dd1ad9ca139ae766e..dd08235a212175b7afa3e90c7ca4e27ae2b85519 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
@@ -29,13 +29,13 @@ class AwResourceDispatcherHostDelegate
static void ResourceDispatcherHostCreated();
// Overriden methods from ResourceDispatcherHostDelegate.
- virtual void RequestBeginning(
+ void RequestBeginning(
net::URLRequest* request,
content::ResourceContext* resource_context,
content::AppCacheService* appcache_service,
content::ResourceType resource_type,
ScopedVector<content::ResourceThrottle>* throttles) override;
- virtual void DownloadStarting(
+ void DownloadStarting(
net::URLRequest* request,
content::ResourceContext* resource_context,
int child_id,
@@ -44,23 +44,21 @@ class AwResourceDispatcherHostDelegate
bool is_content_initiated,
bool must_download,
ScopedVector<content::ResourceThrottle>* throttles) override;
- virtual content::ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
+ content::ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
net::AuthChallengeInfo* auth_info,
net::URLRequest* request) override;
- virtual bool HandleExternalProtocol(const GURL& url,
- int child_id,
- int route_id) override;
- virtual void OnResponseStarted(
- net::URLRequest* request,
- content::ResourceContext* resource_context,
- content::ResourceResponse* response,
- IPC::Sender* sender) override;
-
- virtual void OnRequestRedirected(
- const GURL& redirect_url,
- net::URLRequest* request,
- content::ResourceContext* resource_context,
- content::ResourceResponse* response) override;
+ bool HandleExternalProtocol(const GURL& url,
+ int child_id,
+ int route_id) override;
+ void OnResponseStarted(net::URLRequest* request,
+ content::ResourceContext* resource_context,
+ content::ResourceResponse* response,
+ IPC::Sender* sender) override;
+
+ void OnRequestRedirected(const GURL& redirect_url,
+ net::URLRequest* request,
+ content::ResourceContext* resource_context,
+ content::ResourceResponse* response) override;
void RemovePendingThrottleOnIoThread(IoThreadClientThrottle* throttle);
@@ -74,7 +72,7 @@ class AwResourceDispatcherHostDelegate
friend struct base::DefaultLazyInstanceTraits<
AwResourceDispatcherHostDelegate>;
AwResourceDispatcherHostDelegate();
- virtual ~AwResourceDispatcherHostDelegate();
+ ~AwResourceDispatcherHostDelegate() override;
// These methods must be called on IO thread.
void OnIoThreadClientReadyInternal(int new_render_process_id,

Powered by Google App Engine
This is Rietveld 408576698