#ifndef PPAPI_PROXY_PROXY_OBJECT_VAR_H_
#define PPAPI_PROXY_PROXY_OBJECT_VAR_H_
#include <stdint.h>
#include "base/compiler_specific.h"
#include "ppapi/proxy/ppapi_proxy_export.h"
#include "ppapi/shared_impl/var.h"
namespace ppapi {
namespace proxy {
class PluginDispatcher;
}
class PPAPI_PROXY_EXPORT ProxyObjectVar : public Var {
public:
ProxyObjectVar(proxy::PluginDispatcher* dispatcher, int32_t host_var_id);
ProxyObjectVar(const ProxyObjectVar&) = delete;
ProxyObjectVar& operator=(const ProxyObjectVar&) = delete;
~ProxyObjectVar() override;
ProxyObjectVar* AsProxyObjectVar() override;
PP_VarType GetType() const override;
proxy::PluginDispatcher* dispatcher() const { return dispatcher_; }
int32_t host_var_id() const { return host_var_id_; }
void* user_data() const { return user_data_; }
void set_user_data(void* ud) { user_data_ = ud; }
void AssignVarID(int32_t id);
void clear_dispatcher() { dispatcher_ = NULL; }
private:
proxy::PluginDispatcher* dispatcher_;
int32_t host_var_id_;
void* user_data_;
};
}
#endif