1 // Copyright (c) 2011 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/proxy_object_var.h"
7 #include "base/logging.h"
8 #include "ppapi/c/pp_var.h"
10 using ppapi::proxy::PluginDispatcher
;
14 ProxyObjectVar::ProxyObjectVar(PluginDispatcher
* dispatcher
,
16 : dispatcher_(dispatcher
),
17 host_var_id_(host_var_id
),
19 // Should be given valid objects or we'll crash later.
23 ProxyObjectVar::~ProxyObjectVar() {
26 ProxyObjectVar
* ProxyObjectVar::AsProxyObjectVar() {
30 PP_VarType
ProxyObjectVar::GetType() const {
31 return PP_VARTYPE_OBJECT
;
34 void ProxyObjectVar::AssignVarID(int32 id
) {
35 return Var::AssignVarID(id
);