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

Unified Diff: chrome/browser/devtools/devtools_network_transaction.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/devtools/devtools_network_transaction.h
diff --git a/chrome/browser/devtools/devtools_network_transaction.h b/chrome/browser/devtools/devtools_network_transaction.h
index cbc085adfba120af830f4681752bee67fa59a8b3..c342e6f4d0a08a72d5517fb07c12385b57642db7 100644
--- a/chrome/browser/devtools/devtools_network_transaction.h
+++ b/chrome/browser/devtools/devtools_network_transaction.h
@@ -75,41 +75,41 @@ class DevToolsNetworkTransaction : public net::HttpTransaction {
virtual int Start(
const net::HttpRequestInfo* request,
const net::CompletionCallback& callback,
- const net::BoundNetLog& net_log) OVERRIDE;
+ const net::BoundNetLog& net_log) override;
virtual int RestartIgnoringLastError(
- const net::CompletionCallback& callback) OVERRIDE;
+ const net::CompletionCallback& callback) override;
virtual int RestartWithCertificate(
net::X509Certificate* client_cert,
- const net::CompletionCallback& callback) OVERRIDE;
+ const net::CompletionCallback& callback) override;
virtual int RestartWithAuth(
const net::AuthCredentials& credentials,
- const net::CompletionCallback& callback) OVERRIDE;
- virtual bool IsReadyToRestartForAuth() OVERRIDE;
+ const net::CompletionCallback& callback) override;
+ virtual bool IsReadyToRestartForAuth() override;
virtual int Read(
net::IOBuffer* buf,
int buf_len,
- const net::CompletionCallback& callback) OVERRIDE;
- virtual void StopCaching() OVERRIDE;
+ const net::CompletionCallback& callback) override;
+ virtual void StopCaching() override;
virtual bool GetFullRequestHeaders(
- net::HttpRequestHeaders* headers) const OVERRIDE;
- virtual int64 GetTotalReceivedBytes() const OVERRIDE;
- virtual void DoneReading() OVERRIDE;
- virtual const net::HttpResponseInfo* GetResponseInfo() const OVERRIDE;
- virtual net::LoadState GetLoadState() const OVERRIDE;
- virtual net::UploadProgress GetUploadProgress() const OVERRIDE;
+ net::HttpRequestHeaders* headers) const override;
+ virtual int64 GetTotalReceivedBytes() const override;
+ virtual void DoneReading() override;
+ virtual const net::HttpResponseInfo* GetResponseInfo() const override;
+ virtual net::LoadState GetLoadState() const override;
+ virtual net::UploadProgress GetUploadProgress() const override;
virtual void SetQuicServerInfo(
- net::QuicServerInfo* quic_server_info) OVERRIDE;
+ net::QuicServerInfo* quic_server_info) override;
virtual bool GetLoadTimingInfo(
- net::LoadTimingInfo* load_timing_info) const OVERRIDE;
- virtual void SetPriority(net::RequestPriority priority) OVERRIDE;
+ net::LoadTimingInfo* load_timing_info) const override;
+ virtual void SetPriority(net::RequestPriority priority) override;
virtual void SetWebSocketHandshakeStreamCreateHelper(
- net::WebSocketHandshakeStreamBase::CreateHelper* create_helper) OVERRIDE;
+ net::WebSocketHandshakeStreamBase::CreateHelper* create_helper) override;
virtual void SetBeforeNetworkStartCallback(
- const BeforeNetworkStartCallback& callback) OVERRIDE;
+ const BeforeNetworkStartCallback& callback) override;
virtual void SetBeforeProxyHeadersSentCallback(
- const BeforeProxyHeadersSentCallback& callback) OVERRIDE;
- virtual int ResumeNetworkStart() OVERRIDE;
+ const BeforeProxyHeadersSentCallback& callback) override;
+ virtual int ResumeNetworkStart() override;
protected:
friend class test::DevToolsNetworkControllerHelper;
« no previous file with comments | « chrome/browser/devtools/devtools_file_helper.cc ('k') | chrome/browser/devtools/devtools_network_transaction_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698