| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_COMPOSITOR_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_COMPOSITOR_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_COMPOSITOR_RESOURCE_H_ | 6 #define PPAPI_PROXY_COMPOSITOR_RESOURCE_H_ |
| 7 | 7 |
| 8 #include <map> | |
| 9 | |
| 10 #include "ppapi/proxy/compositor_layer_resource.h" | |
| 11 #include "ppapi/proxy/plugin_resource.h" | 8 #include "ppapi/proxy/plugin_resource.h" |
| 12 #include "ppapi/proxy/ppapi_proxy_export.h" | 9 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 13 #include "ppapi/thunk/ppb_compositor_api.h" | 10 #include "ppapi/thunk/ppb_compositor_api.h" |
| 14 | 11 |
| 15 namespace ppapi { | 12 namespace ppapi { |
| 16 namespace proxy { | 13 namespace proxy { |
| 17 | 14 |
| 18 class PPAPI_PROXY_EXPORT CompositorResource | 15 class PPAPI_PROXY_EXPORT CompositorResource |
| 19 : public PluginResource, | 16 : public PluginResource, |
| 20 public thunk::PPB_Compositor_API { | 17 public thunk::PPB_Compositor_API { |
| 21 public: | 18 public: |
| 22 CompositorResource(Connection connection, | 19 CompositorResource(Connection connection, |
| 23 PP_Instance instance); | 20 PP_Instance instance); |
| 24 | 21 |
| 25 bool IsInProgress() const { | |
| 26 return TrackedCallback::IsPending(commit_callback_); | |
| 27 } | |
| 28 | |
| 29 int32_t GenerateResourceId() const { | |
| 30 return ++last_resource_id_; | |
| 31 } | |
| 32 | |
| 33 private: | 22 private: |
| 34 virtual ~CompositorResource(); | 23 virtual ~CompositorResource(); |
| 35 | 24 |
| 36 // Resource overrides: | 25 // Resource overrides: |
| 37 virtual thunk::PPB_Compositor_API* AsPPB_Compositor_API() OVERRIDE; | 26 virtual thunk::PPB_Compositor_API* AsPPB_Compositor_API() OVERRIDE; |
| 38 | 27 |
| 39 // PluginResource overrides: | |
| 40 virtual void OnReplyReceived(const ResourceMessageReplyParams& params, | |
| 41 const IPC::Message& msg) OVERRIDE; | |
| 42 | |
| 43 // thunk::PPB_Compositor_API overrides: | 28 // thunk::PPB_Compositor_API overrides: |
| 44 virtual PP_Resource AddLayer() OVERRIDE; | 29 virtual PP_Resource AddLayer() OVERRIDE; |
| 45 virtual int32_t CommitLayers( | 30 virtual int32_t CommitLayers( |
| 46 const scoped_refptr<TrackedCallback>& callback) OVERRIDE; | 31 const scoped_refptr<ppapi::TrackedCallback>& callback) OVERRIDE; |
| 47 virtual int32_t ResetLayers() OVERRIDE; | 32 virtual int32_t ResetLayers() OVERRIDE; |
| 48 | 33 |
| 49 // IPC msg handlers: | |
| 50 void OnPluginMsgCommitLayersReply(const ResourceMessageReplyParams& params); | |
| 51 void OnPluginMsgReleaseResource( | |
| 52 const ResourceMessageReplyParams& params, | |
| 53 int32_t id, | |
| 54 uint32_t sync_point, | |
| 55 bool is_lost); | |
| 56 | |
| 57 void ResetLayersInternal(); | |
| 58 | |
| 59 // Callback for CommitLayers(). | |
| 60 scoped_refptr<TrackedCallback> commit_callback_; | |
| 61 | |
| 62 // True if layers_ has been reset by ResetLayers(). | |
| 63 bool layer_reset_; | |
| 64 | |
| 65 // Layer stack. | |
| 66 typedef std::vector<scoped_refptr<CompositorLayerResource> > LayerList; | |
| 67 LayerList layers_; | |
| 68 | |
| 69 // Release callback map for texture and image. | |
| 70 typedef CompositorLayerResource::ReleaseCallback ReleaseCallback; | |
| 71 typedef std::map<int32_t, ReleaseCallback> ReleaseCallbackMap; | |
| 72 ReleaseCallbackMap release_callback_map_; | |
| 73 | |
| 74 // The last resource id for texture or image. | |
| 75 mutable int32_t last_resource_id_; | |
| 76 | |
| 77 DISALLOW_COPY_AND_ASSIGN(CompositorResource); | 34 DISALLOW_COPY_AND_ASSIGN(CompositorResource); |
| 78 }; | 35 }; |
| 79 | 36 |
| 80 } // namespace proxy | 37 } // namespace proxy |
| 81 } // namespace ppapi | 38 } // namespace ppapi |
| 82 | 39 |
| 83 #endif // PPAPI_PROXY_COMPOSITOR_RESOURCE_H_ | 40 #endif // PPAPI_PROXY_COMPOSITOR_RESOURCE_H_ |
| OLD | NEW |