| Index: ppapi/proxy/proxy_object_var.cc
|
| diff --git a/ppapi/proxy/proxy_object_var.cc b/ppapi/proxy/proxy_object_var.cc
|
| index 4a185e861ed41580bd5055920ff613d9340eccdc..acd53f3d58244636947ebb4846f53f48bc93ff23 100644
|
| --- a/ppapi/proxy/proxy_object_var.cc
|
| +++ b/ppapi/proxy/proxy_object_var.cc
|
| @@ -27,17 +27,6 @@ ProxyObjectVar* ProxyObjectVar::AsProxyObjectVar() {
|
| return this;
|
| }
|
|
|
| -PP_Var ProxyObjectVar::GetPPVar() {
|
| - int32 id = GetOrCreateVarID();
|
| - if (!id)
|
| - return PP_MakeNull();
|
| -
|
| - PP_Var result;
|
| - result.type = PP_VARTYPE_OBJECT;
|
| - result.value.as_id = id;
|
| - return result;
|
| -}
|
| -
|
| PP_VarType ProxyObjectVar::GetType() const {
|
| return PP_VARTYPE_OBJECT;
|
| }
|
|
|