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

Unified Diff: content/child/npapi/plugin_url_fetcher.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (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
« no previous file with comments | « content/child/npapi/plugin_stream_url.h ('k') | content/child/npapi/plugin_url_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/plugin_url_fetcher.h
diff --git a/content/child/npapi/plugin_url_fetcher.h b/content/child/npapi/plugin_url_fetcher.h
index 594719349ac5f434176f9bb9c1a9520816e0391c..dcedb8abcfccccaa2b56839b1fbc8cbbd84e5700 100644
--- a/content/child/npapi/plugin_url_fetcher.h
+++ b/content/child/npapi/plugin_url_fetcher.h
@@ -52,20 +52,20 @@ class PluginURLFetcher : public RequestPeer {
private:
// RequestPeer implementation:
- virtual void OnUploadProgress(uint64 position, uint64 size) OVERRIDE;
+ virtual void OnUploadProgress(uint64 position, uint64 size) override;
virtual bool OnReceivedRedirect(const net::RedirectInfo& redirect_info,
- const ResourceResponseInfo& info) OVERRIDE;
- virtual void OnReceivedResponse(const ResourceResponseInfo& info) OVERRIDE;
- virtual void OnDownloadedData(int len, int encoded_data_length) OVERRIDE;
+ const ResourceResponseInfo& info) override;
+ virtual void OnReceivedResponse(const ResourceResponseInfo& info) override;
+ virtual void OnDownloadedData(int len, int encoded_data_length) override;
virtual void OnReceivedData(const char* data,
int data_length,
- int encoded_data_length) OVERRIDE;
+ int encoded_data_length) override;
virtual void OnCompletedRequest(int error_code,
bool was_ignored_by_handler,
bool stale_copy_in_cache,
const std::string& security_info,
const base::TimeTicks& completion_time,
- int64 total_transfer_size) OVERRIDE;
+ int64 total_transfer_size) override;
// |plugin_stream_| becomes NULL after Cancel() to ensure no further calls
// |reach it.
« no previous file with comments | « content/child/npapi/plugin_stream_url.h ('k') | content/child/npapi/plugin_url_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698