diff options
author | mohan.reddy <mohan.reddy@samsung.com> | 2014-10-08 22:24:13 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-09 05:24:24 +0000 |
commit | 7fc3ac7d5ac957a99031b20a8c54a197166b292a (patch) | |
tree | b091b4c401c8f4c0a49f38bb54658be00d81503f /content/browser/webui/url_data_manager_backend.cc | |
parent | 4569c42c7444d4468f2c125a42ebadc433b7d51c (diff) | |
download | chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.zip chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.tar.gz chromium_src-7fc3ac7d5ac957a99031b20a8c54a197166b292a.tar.bz2 |
Replace FINAL and OVERRIDE with their C++11 counterparts in content
This step is a giant search and replace for OVERRIDE and FINAL to
replace them with their lowercase versions.
BUG=417463
Review URL: https://codereview.chromium.org/637183002
Cr-Commit-Position: refs/heads/master@{#298804}
Diffstat (limited to 'content/browser/webui/url_data_manager_backend.cc')
-rw-r--r-- | content/browser/webui/url_data_manager_backend.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/content/browser/webui/url_data_manager_backend.cc b/content/browser/webui/url_data_manager_backend.cc index cda08bb..182e9e7 100644 --- a/content/browser/webui/url_data_manager_backend.cc +++ b/content/browser/webui/url_data_manager_backend.cc @@ -106,14 +106,14 @@ class URLRequestChromeJob : public net::URLRequestJob, bool is_incognito); // net::URLRequestJob implementation. - virtual void Start() OVERRIDE; - virtual void Kill() OVERRIDE; + virtual void Start() override; + virtual void Kill() override; virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, - int* bytes_read) OVERRIDE; - virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; - virtual int GetResponseCode() const OVERRIDE; - virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE; + int* bytes_read) override; + virtual bool GetMimeType(std::string* mime_type) const override; + virtual int GetResponseCode() const override; + virtual void GetResponseInfo(net::HttpResponseInfo* info) override; // Used to notify that the requested data's |mime_type| is ready. void MimeTypeAvailable(const std::string& mime_type); @@ -436,7 +436,7 @@ class ChromeProtocolHandler virtual net::URLRequestJob* MaybeCreateJob( net::URLRequest* request, - net::NetworkDelegate* network_delegate) const OVERRIDE { + net::NetworkDelegate* network_delegate) const override { DCHECK(request); // Check for chrome://view-http-cache/*, which uses its own job type. @@ -477,7 +477,7 @@ class ChromeProtocolHandler GetURLDataManagerForResourceContext(resource_context_), is_incognito_); } - virtual bool IsSafeRedirectTarget(const GURL& location) const OVERRIDE { + virtual bool IsSafeRedirectTarget(const GURL& location) const override { return false; } @@ -697,7 +697,7 @@ class DevToolsJobFactory virtual net::URLRequestJob* MaybeCreateJob( net::URLRequest* request, - net::NetworkDelegate* network_delegate) const OVERRIDE; + net::NetworkDelegate* network_delegate) const override; private: // |resource_context_| and |network_delegate_| are owned by ProfileIOData, |