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

Unified Diff: ppapi/proxy/url_request_info_resource.h

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (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 | « ppapi/proxy/url_loader_resource.h ('k') | ppapi/proxy/url_response_info_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/url_request_info_resource.h
diff --git a/ppapi/proxy/url_request_info_resource.h b/ppapi/proxy/url_request_info_resource.h
index e3906a6f4edf2073e9fb47a0c12ecc9be2db85df..8b07c7a3eb9cc6aaf7ffe78a962ed2203b6163bc 100644
--- a/ppapi/proxy/url_request_info_resource.h
+++ b/ppapi/proxy/url_request_info_resource.h
@@ -24,18 +24,18 @@ class PPAPI_PROXY_EXPORT URLRequestInfoResource
virtual ~URLRequestInfoResource();
// Resource overrides.
- virtual thunk::PPB_URLRequestInfo_API* AsPPB_URLRequestInfo_API() OVERRIDE;
+ virtual thunk::PPB_URLRequestInfo_API* AsPPB_URLRequestInfo_API() override;
// PPB_URLRequestInfo_API implementation.
virtual PP_Bool SetProperty(PP_URLRequestProperty property,
- PP_Var var) OVERRIDE;
- virtual PP_Bool AppendDataToBody(const void* data, uint32_t len) OVERRIDE;
+ PP_Var var) override;
+ virtual PP_Bool AppendDataToBody(const void* data, uint32_t len) override;
virtual PP_Bool AppendFileToBody(
PP_Resource file_ref,
int64_t start_offset,
int64_t number_of_bytes,
- PP_Time expected_last_modified_time) OVERRIDE;
- virtual const URLRequestInfoData& GetData() const OVERRIDE;
+ PP_Time expected_last_modified_time) override;
+ virtual const URLRequestInfoData& GetData() const override;
bool SetUndefinedProperty(PP_URLRequestProperty property);
bool SetBooleanProperty(PP_URLRequestProperty property, bool value);
« no previous file with comments | « ppapi/proxy/url_loader_resource.h ('k') | ppapi/proxy/url_response_info_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698