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

Side by Side Diff: ppapi/shared_impl/ppb_resource_array_shared.cc

Issue 9111008: Introduce PPB_ResourceArray_Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/shared_impl/ppb_resource_array_shared.h ('k') | ppapi/shared_impl/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
(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
OLDNEW
« no previous file with comments | « ppapi/shared_impl/ppb_resource_array_shared.h ('k') | ppapi/shared_impl/resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698