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

Side by Side Diff: ppapi/proxy/tcp_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 unified diff | Download patch
« no previous file with comments | « ppapi/proxy/tcp_socket_private_resource.h ('k') | ppapi/proxy/truetype_font_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_PROXY_TCP_SOCKET_RESOURCE_H_ 5 #ifndef PPAPI_PROXY_TCP_SOCKET_RESOURCE_H_
6 #define PPAPI_PROXY_TCP_SOCKET_RESOURCE_H_ 6 #define PPAPI_PROXY_TCP_SOCKET_RESOURCE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "ppapi/proxy/tcp_socket_resource_base.h" 10 #include "ppapi/proxy/tcp_socket_resource_base.h"
11 #include "ppapi/thunk/ppb_tcp_socket_api.h" 11 #include "ppapi/thunk/ppb_tcp_socket_api.h"
12 12
13 namespace ppapi { 13 namespace ppapi {
14 14
15 enum TCPSocketVersion; 15 enum TCPSocketVersion;
16 16
17 namespace proxy { 17 namespace proxy {
18 18
19 class PPAPI_PROXY_EXPORT TCPSocketResource : public thunk::PPB_TCPSocket_API, 19 class PPAPI_PROXY_EXPORT TCPSocketResource : public thunk::PPB_TCPSocket_API,
20 public TCPSocketResourceBase { 20 public TCPSocketResourceBase {
21 public: 21 public:
22 // C-tor used for new sockets created. 22 // C-tor used for new sockets created.
23 TCPSocketResource(Connection connection, 23 TCPSocketResource(Connection connection,
24 PP_Instance instance, 24 PP_Instance instance,
25 TCPSocketVersion version); 25 TCPSocketVersion version);
26 26
27 virtual ~TCPSocketResource(); 27 virtual ~TCPSocketResource();
28 28
29 // PluginResource overrides. 29 // PluginResource overrides.
30 virtual thunk::PPB_TCPSocket_API* AsPPB_TCPSocket_API() OVERRIDE; 30 virtual thunk::PPB_TCPSocket_API* AsPPB_TCPSocket_API() override;
31 31
32 // thunk::PPB_TCPSocket_API implementation. 32 // thunk::PPB_TCPSocket_API implementation.
33 virtual int32_t Bind(PP_Resource addr, 33 virtual int32_t Bind(PP_Resource addr,
34 scoped_refptr<TrackedCallback> callback) OVERRIDE; 34 scoped_refptr<TrackedCallback> callback) override;
35 virtual int32_t Connect(PP_Resource addr, 35 virtual int32_t Connect(PP_Resource addr,
36 scoped_refptr<TrackedCallback> callback) OVERRIDE; 36 scoped_refptr<TrackedCallback> callback) override;
37 virtual PP_Resource GetLocalAddress() OVERRIDE; 37 virtual PP_Resource GetLocalAddress() override;
38 virtual PP_Resource GetRemoteAddress() OVERRIDE; 38 virtual PP_Resource GetRemoteAddress() override;
39 virtual int32_t Read(char* buffer, 39 virtual int32_t Read(char* buffer,
40 int32_t bytes_to_read, 40 int32_t bytes_to_read,
41 scoped_refptr<TrackedCallback> callback) OVERRIDE; 41 scoped_refptr<TrackedCallback> callback) override;
42 virtual int32_t Write(const char* buffer, 42 virtual int32_t Write(const char* buffer,
43 int32_t bytes_to_write, 43 int32_t bytes_to_write,
44 scoped_refptr<TrackedCallback> callback) OVERRIDE; 44 scoped_refptr<TrackedCallback> callback) override;
45 virtual int32_t Listen(int32_t backlog, 45 virtual int32_t Listen(int32_t backlog,
46 scoped_refptr<TrackedCallback> callback) OVERRIDE; 46 scoped_refptr<TrackedCallback> callback) override;
47 virtual int32_t Accept(PP_Resource* accepted_tcp_socket, 47 virtual int32_t Accept(PP_Resource* accepted_tcp_socket,
48 scoped_refptr<TrackedCallback> callback) OVERRIDE; 48 scoped_refptr<TrackedCallback> callback) override;
49 virtual void Close() OVERRIDE; 49 virtual void Close() override;
50 virtual int32_t SetOption(PP_TCPSocket_Option name, 50 virtual int32_t SetOption(PP_TCPSocket_Option name,
51 const PP_Var& value, 51 const PP_Var& value,
52 scoped_refptr<TrackedCallback> callback) OVERRIDE; 52 scoped_refptr<TrackedCallback> callback) override;
53 53
54 // TCPSocketResourceBase implementation. 54 // TCPSocketResourceBase implementation.
55 virtual PP_Resource CreateAcceptedSocket( 55 virtual PP_Resource CreateAcceptedSocket(
56 int pending_host_id, 56 int pending_host_id,
57 const PP_NetAddress_Private& local_addr, 57 const PP_NetAddress_Private& local_addr,
58 const PP_NetAddress_Private& remote_addr) OVERRIDE; 58 const PP_NetAddress_Private& remote_addr) override;
59 59
60 private: 60 private:
61 // C-tor used for accepted sockets. 61 // C-tor used for accepted sockets.
62 TCPSocketResource(Connection connection, 62 TCPSocketResource(Connection connection,
63 PP_Instance instance, 63 PP_Instance instance,
64 int pending_host_id, 64 int pending_host_id,
65 const PP_NetAddress_Private& local_addr, 65 const PP_NetAddress_Private& local_addr,
66 const PP_NetAddress_Private& remote_addr); 66 const PP_NetAddress_Private& remote_addr);
67 67
68 DISALLOW_COPY_AND_ASSIGN(TCPSocketResource); 68 DISALLOW_COPY_AND_ASSIGN(TCPSocketResource);
69 }; 69 };
70 70
71 } // namespace proxy 71 } // namespace proxy
72 } // namespace ppapi 72 } // namespace ppapi
73 73
74 #endif // PPAPI_PROXY_TCP_SOCKET_RESOURCE_H_ 74 #endif // PPAPI_PROXY_TCP_SOCKET_RESOURCE_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/tcp_socket_private_resource.h ('k') | ppapi/proxy/truetype_font_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698