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.
5 #include "ppapi/proxy/host_var_serialization_rules.h"
7 #include "ppapi/shared_impl/ppapi_globals.h"
8 #include "ppapi/shared_impl/var_tracker.h"
10 using ppapi::PpapiGlobals
;
11 using ppapi::VarTracker
;
16 HostVarSerializationRules::HostVarSerializationRules() {
19 HostVarSerializationRules::~HostVarSerializationRules() {
22 PP_Var
HostVarSerializationRules::SendCallerOwned(const PP_Var
& var
) {
26 PP_Var
HostVarSerializationRules::BeginReceiveCallerOwned(const PP_Var
& var
) {
30 void HostVarSerializationRules::EndReceiveCallerOwned(const PP_Var
& var
) {
31 if (var
.type
!= PP_VARTYPE_OBJECT
&& var
.type
>= PP_VARTYPE_STRING
) {
32 // Release our reference to the local Var.
33 PpapiGlobals::Get()->GetVarTracker()->ReleaseVar(var
);
37 PP_Var
HostVarSerializationRules::ReceivePassRef(const PP_Var
& var
) {
38 // See PluginVarSerialization::BeginSendPassRef for an example.
39 if (var
.type
== PP_VARTYPE_OBJECT
)
40 PpapiGlobals::Get()->GetVarTracker()->AddRefVar(var
);
44 PP_Var
HostVarSerializationRules::BeginSendPassRef(const PP_Var
& var
) {
48 void HostVarSerializationRules::EndSendPassRef(const PP_Var
& /* var */) {
49 // See PluginVarSerialization::ReceivePassRef for an example. We don't need
50 // to do anything here.
53 void HostVarSerializationRules::ReleaseObjectRef(const PP_Var
& var
) {
54 PpapiGlobals::Get()->GetVarTracker()->ReleaseVar(var
);