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

Unified Diff: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/renderer_host/chrome_resource_dispatcher_host_delegate.h
diff --git a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h
index dc4d7469bd72b160fbaf2aeca840b4b6948ad9c3..e18298d4c20dad03903ffb40d3fdf8c3917872b2 100644
--- a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h
+++ b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h
@@ -42,13 +42,13 @@ class ChromeResourceDispatcherHostDelegate
const std::string& method,
const GURL& url,
content::ResourceType resource_type,
- content::ResourceContext* resource_context) OVERRIDE;
+ content::ResourceContext* resource_context) override;
virtual void RequestBeginning(
net::URLRequest* request,
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,
@@ -57,33 +57,33 @@ class ChromeResourceDispatcherHostDelegate
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::AuthChallengeInfo* auth_info, net::URLRequest* request) override;
virtual bool HandleExternalProtocol(const GURL& url,
int child_id,
- int route_id) OVERRIDE;
+ int route_id) override;
virtual bool ShouldForceDownloadResource(
- const GURL& url, const std::string& mime_type) OVERRIDE;
+ const GURL& url, const std::string& mime_type) override;
virtual bool ShouldInterceptResourceAsStream(
net::URLRequest* request,
const std::string& mime_type,
GURL* origin,
- std::string* payload) OVERRIDE;
+ std::string* payload) override;
virtual void OnStreamCreated(
net::URLRequest* request,
- scoped_ptr<content::StreamHandle> stream) OVERRIDE;
+ scoped_ptr<content::StreamHandle> stream) 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;
- virtual void RequestComplete(net::URLRequest* url_request) OVERRIDE;
+ content::ResourceResponse* response) override;
+ virtual void RequestComplete(net::URLRequest* url_request) override;
// Called on the UI thread. Allows switching out the
// ExternalProtocolHandler::Delegate for testing code.

Powered by Google App Engine
This is Rietveld 408576698