summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl/scoped_pp_var.cc
blob: 3ae13b0445a940185424bb4fd4fa1c3be2d7688e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ppapi/shared_impl/scoped_pp_var.h"

#include "ppapi/shared_impl/ppapi_globals.h"
#include "ppapi/shared_impl/var_tracker.h"

namespace ppapi {

namespace {

void CallAddRef(const PP_Var& v) {
  PpapiGlobals::Get()->GetVarTracker()->AddRefVar(v);
}

void CallRelease(const PP_Var& v) {
  PpapiGlobals::Get()->GetVarTracker()->ReleaseVar(v);
}

}  // namespace

ScopedPPVar::ScopedPPVar() : var_(PP_MakeUndefined()) {
}

ScopedPPVar::ScopedPPVar(const PP_Var& v) : var_(v) {
  CallAddRef(var_);
}

ScopedPPVar::ScopedPPVar(const PassRef&, const PP_Var& v) : var_(v) {
}

ScopedPPVar::ScopedPPVar(const ScopedPPVar& other)
    : var_(other.var_) {
  CallAddRef(var_);
}

ScopedPPVar::~ScopedPPVar() {
  CallRelease(var_);
}

ScopedPPVar& ScopedPPVar::operator=(const PP_Var& v) {
  CallAddRef(v);
  CallRelease(var_);
  var_ = v;
  return *this;
}

PP_Var ScopedPPVar::Release() {
  PP_Var result = var_;
  var_ = PP_MakeUndefined();
  return result;
}

}  // namespace ppapi