Fix for moving to previous url from PDF page in OOP case.
[chromium-blink-merge.git] / ppapi / cpp / var_array.cc
blob7a504e7cb58b4826182be7706ca8c122898a75fb
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
3 // found in the LICENSE file.
5 #include "ppapi/cpp/var_array.h"
7 #include "ppapi/c/ppb_var_array.h"
8 #include "ppapi/cpp/logging.h"
9 #include "ppapi/cpp/module_impl.h"
11 namespace pp {
13 namespace {
15 template <> const char* interface_name<PPB_VarArray_1_0>() {
16 return PPB_VAR_ARRAY_INTERFACE_1_0;
19 } // namespace
21 VarArray::VarArray() : Var(Null()) {
22 if (has_interface<PPB_VarArray_1_0>())
23 var_ = get_interface<PPB_VarArray_1_0>()->Create();
24 else
25 PP_NOTREACHED();
28 VarArray::VarArray(const Var& var) : Var(var) {
29 if (!var.is_array()) {
30 PP_NOTREACHED();
32 // This takes care of releasing the reference that this object holds.
33 Var::operator=(Var(Null()));
37 VarArray::VarArray(const PP_Var& var) : Var(var) {
38 if (var.type != PP_VARTYPE_ARRAY) {
39 PP_NOTREACHED();
41 // This takes care of releasing the reference that this object holds.
42 Var::operator=(Var(Null()));
46 VarArray::VarArray(const VarArray& other) : Var(other) {
49 VarArray::~VarArray() {
52 VarArray& VarArray::operator=(const VarArray& other) {
53 Var::operator=(other);
54 return *this;
57 Var& VarArray::operator=(const Var& other) {
58 if (other.is_array()) {
59 Var::operator=(other);
60 } else {
61 PP_NOTREACHED();
62 Var::operator=(Var(Null()));
64 return *this;
67 Var VarArray::Get(uint32_t index) const {
68 if (!has_interface<PPB_VarArray_1_0>())
69 return Var();
71 return Var(PASS_REF, get_interface<PPB_VarArray_1_0>()->Get(var_, index));
74 bool VarArray::Set(uint32_t index, const Var& value) {
75 if (!has_interface<PPB_VarArray_1_0>())
76 return false;
78 return PP_ToBool(get_interface<PPB_VarArray_1_0>()->Set(var_, index,
79 value.pp_var()));
82 uint32_t VarArray::GetLength() const {
83 if (!has_interface<PPB_VarArray_1_0>())
84 return 0;
86 return get_interface<PPB_VarArray_1_0>()->GetLength(var_);
89 bool VarArray::SetLength(uint32_t length) {
90 if (!has_interface<PPB_VarArray_1_0>())
91 return false;
93 return PP_ToBool(get_interface<PPB_VarArray_1_0>()->SetLength(var_, length));
96 } // namespace pp