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

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_delegate.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/data_reduction_proxy/browser/data_reduction_proxy_delegate.h
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_delegate.h b/components/data_reduction_proxy/browser/data_reduction_proxy_delegate.h
index 59a8b770b8cbb9b7767750158babacf83ae21852..11831a452436f54068bada19b249f2840b0e6d08 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_delegate.h
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_delegate.h
@@ -33,23 +33,23 @@ class DataReductionProxyDelegate : public net::ProxyDelegate {
virtual void OnResolveProxy(const GURL& url,
int load_flags,
const net::ProxyService& proxy_service,
- net::ProxyInfo* result) OVERRIDE;
+ net::ProxyInfo* result) override;
virtual void OnFallback(const net::ProxyServer& bad_proxy,
- int net_error) OVERRIDE;
+ int net_error) override;
virtual void OnBeforeSendHeaders(net::URLRequest* request,
const net::ProxyInfo& proxy_info,
- net::HttpRequestHeaders* headers) OVERRIDE;
+ net::HttpRequestHeaders* headers) override;
virtual void OnBeforeTunnelRequest(
const net::HostPortPair& proxy_server,
- net::HttpRequestHeaders* extra_headers) OVERRIDE;
+ net::HttpRequestHeaders* extra_headers) override;
virtual void OnTunnelHeadersReceived(
const net::HostPortPair& origin,
const net::HostPortPair& proxy_server,
- const net::HttpResponseHeaders& response_headers) OVERRIDE;
+ const net::HttpResponseHeaders& response_headers) override;
private:
DataReductionProxyAuthRequestHandler* auth_handler_;

Powered by Google App Engine
This is Rietveld 408576698