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

Side by Side Diff: ppapi/proxy/ppb_buffer_proxy.h

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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/ppb_broker_proxy.cc ('k') | ppapi/proxy/ppb_flash_message_loop_proxy.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PPB_BUFFER_PROXY_H_ 5 #ifndef PPAPI_PROXY_PPB_BUFFER_PROXY_H_
6 #define PPAPI_PROXY_PPB_BUFFER_PROXY_H_ 6 #define PPAPI_PROXY_PPB_BUFFER_PROXY_H_
7 7
8 #include "base/memory/shared_memory.h" 8 #include "base/memory/shared_memory.h"
9 #include "ppapi/c/pp_instance.h" 9 #include "ppapi/c/pp_instance.h"
10 #include "ppapi/proxy/interface_proxy.h" 10 #include "ppapi/proxy/interface_proxy.h"
11 #include "ppapi/shared_impl/resource.h" 11 #include "ppapi/shared_impl/resource.h"
12 #include "ppapi/thunk/ppb_buffer_api.h" 12 #include "ppapi/thunk/ppb_buffer_api.h"
13 13
14 namespace ppapi { 14 namespace ppapi {
15 15
16 class HostResource; 16 class HostResource;
17 17
18 namespace proxy { 18 namespace proxy {
19 19
20 class SerializedHandle; 20 class SerializedHandle;
21 21
22 class Buffer : public thunk::PPB_Buffer_API, public Resource { 22 class Buffer : public thunk::PPB_Buffer_API, public Resource {
23 public: 23 public:
24 Buffer(const HostResource& resource, 24 Buffer(const HostResource& resource,
25 const base::SharedMemoryHandle& shm_handle, 25 const base::SharedMemoryHandle& shm_handle,
26 uint32_t size); 26 uint32_t size);
27 virtual ~Buffer(); 27 ~Buffer() override;
28 28
29 // Resource overrides. 29 // Resource overrides.
30 virtual thunk::PPB_Buffer_API* AsPPB_Buffer_API() override; 30 thunk::PPB_Buffer_API* AsPPB_Buffer_API() override;
31 31
32 // PPB_Buffer_API implementation. 32 // PPB_Buffer_API implementation.
33 virtual PP_Bool Describe(uint32_t* size_in_bytes) override; 33 PP_Bool Describe(uint32_t* size_in_bytes) override;
34 virtual PP_Bool IsMapped() override; 34 PP_Bool IsMapped() override;
35 virtual void* Map() override; 35 void* Map() override;
36 virtual void Unmap() override; 36 void Unmap() override;
37 37
38 // Trusted 38 // Trusted
39 virtual int32_t GetSharedMemory(int* handle) override; 39 int32_t GetSharedMemory(int* handle) override;
40 40
41 private: 41 private:
42 base::SharedMemory shm_; 42 base::SharedMemory shm_;
43 uint32_t size_; 43 uint32_t size_;
44 int map_count_; 44 int map_count_;
45 45
46 DISALLOW_COPY_AND_ASSIGN(Buffer); 46 DISALLOW_COPY_AND_ASSIGN(Buffer);
47 }; 47 };
48 48
49 class PPB_Buffer_Proxy : public InterfaceProxy { 49 class PPB_Buffer_Proxy : public InterfaceProxy {
(...skipping 17 matching lines...) Expand all
67 void OnMsgCreate(PP_Instance instance, 67 void OnMsgCreate(PP_Instance instance,
68 uint32_t size, 68 uint32_t size,
69 HostResource* result_resource, 69 HostResource* result_resource,
70 ppapi::proxy::SerializedHandle* result_shm_handle); 70 ppapi::proxy::SerializedHandle* result_shm_handle);
71 }; 71 };
72 72
73 } // namespace proxy 73 } // namespace proxy
74 } // namespace ppapi 74 } // namespace ppapi
75 75
76 #endif // PPAPI_PROXY_PPB_BUFFER_PROXY_H_ 76 #endif // PPAPI_PROXY_PPB_BUFFER_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_broker_proxy.cc ('k') | ppapi/proxy/ppb_flash_message_loop_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698