OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ppapi/shared_impl/ppb_resource_array_shared.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "ppapi/shared_impl/ppapi_globals.h" |
| 9 #include "ppapi/shared_impl/resource_tracker.h" |
| 10 |
| 11 using ppapi::thunk::PPB_ResourceArray_API; |
| 12 |
| 13 namespace ppapi { |
| 14 |
| 15 PPB_ResourceArray_Shared::PPB_ResourceArray_Shared(const InitAsImpl&, |
| 16 PP_Instance instance, |
| 17 const PP_Resource elements[], |
| 18 uint32_t size) |
| 19 : Resource(instance) { |
| 20 Initialize(elements, size); |
| 21 } |
| 22 |
| 23 PPB_ResourceArray_Shared::PPB_ResourceArray_Shared(const InitAsProxy&, |
| 24 PP_Instance instance, |
| 25 const PP_Resource elements[], |
| 26 uint32_t size) |
| 27 : Resource(HostResource::MakeInstanceOnly(instance)) { |
| 28 Initialize(elements, size); |
| 29 } |
| 30 |
| 31 PPB_ResourceArray_Shared::~PPB_ResourceArray_Shared() { |
| 32 for (std::vector<PP_Resource>::iterator iter = resources_.begin(); |
| 33 iter != resources_.end(); ++iter) { |
| 34 if (*iter) |
| 35 PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(*iter); |
| 36 } |
| 37 } |
| 38 |
| 39 PPB_ResourceArray_API* PPB_ResourceArray_Shared::AsPPB_ResourceArray_API() { |
| 40 return this; |
| 41 } |
| 42 |
| 43 uint32_t PPB_ResourceArray_Shared::GetSize() { |
| 44 return static_cast<uint32_t>(resources_.size()); |
| 45 } |
| 46 |
| 47 PP_Resource PPB_ResourceArray_Shared::GetAt(uint32_t index) { |
| 48 return index < resources_.size() ? resources_[index] : 0; |
| 49 } |
| 50 |
| 51 void PPB_ResourceArray_Shared::Initialize(const PP_Resource elements[], |
| 52 uint32_t size) { |
| 53 DCHECK(resources_.empty()); |
| 54 |
| 55 resources_.reserve(size); |
| 56 for (uint32_t index = 0; index < size; ++index) { |
| 57 PP_Resource element = elements[index]; |
| 58 if (element) |
| 59 PpapiGlobals::Get()->GetResourceTracker()->AddRefResource(element); |
| 60 resources_.push_back(element); |
| 61 } |
| 62 } |
| 63 |
| 64 } // namespace ppapi |
OLD | NEW |