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

Unified Diff: ppapi/proxy/udp_socket_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/udp_socket_private_resource.h ('k') | ppapi/proxy/udp_socket_resource_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/udp_socket_resource.h
diff --git a/ppapi/proxy/udp_socket_resource.h b/ppapi/proxy/udp_socket_resource.h
index 7df9797fb07aedf30c758f3e7c29fb4c462b0f53..e0d099afef231e067e94d3baaaebc4a50f8ce930 100644
--- a/ppapi/proxy/udp_socket_resource.h
+++ b/ppapi/proxy/udp_socket_resource.h
@@ -21,24 +21,24 @@ class PPAPI_PROXY_EXPORT UDPSocketResource : public UDPSocketResourceBase,
virtual ~UDPSocketResource();
// PluginResource implementation.
- virtual thunk::PPB_UDPSocket_API* AsPPB_UDPSocket_API() OVERRIDE;
+ virtual thunk::PPB_UDPSocket_API* AsPPB_UDPSocket_API() override;
// thunk::PPB_UDPSocket_API implementation.
virtual int32_t Bind(PP_Resource addr,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual PP_Resource GetBoundAddress() OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual PP_Resource GetBoundAddress() override;
virtual int32_t RecvFrom(char* buffer,
int32_t num_bytes,
PP_Resource* addr,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
virtual int32_t SendTo(const char* buffer,
int32_t num_bytes,
PP_Resource addr,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
- virtual void Close() OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
+ virtual void Close() override;
virtual int32_t SetOption(PP_UDPSocket_Option name,
const PP_Var& value,
- scoped_refptr<TrackedCallback> callback) OVERRIDE;
+ scoped_refptr<TrackedCallback> callback) override;
private:
DISALLOW_COPY_AND_ASSIGN(UDPSocketResource);
« no previous file with comments | « ppapi/proxy/udp_socket_private_resource.h ('k') | ppapi/proxy/udp_socket_resource_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698