| Index: ppapi/proxy/ppp_class_proxy.cc
|
| ===================================================================
|
| --- ppapi/proxy/ppp_class_proxy.cc (revision 100758)
|
| +++ ppapi/proxy/ppp_class_proxy.cc (working copy)
|
| @@ -175,13 +175,18 @@
|
| // PPP_Class_Proxy -------------------------------------------------------------
|
|
|
| PPP_Class_Proxy::PPP_Class_Proxy(Dispatcher* dispatcher)
|
| - : InterfaceProxy(dispatcher, NULL) {
|
| + : InterfaceProxy(dispatcher) {
|
| }
|
|
|
| PPP_Class_Proxy::~PPP_Class_Proxy() {
|
| }
|
|
|
| // static
|
| +InterfaceProxy* PPP_Class_Proxy::Create(Dispatcher* dispatcher) {
|
| + return new PPP_Class_Proxy(dispatcher);
|
| +}
|
| +
|
| +// static
|
| PP_Var PPP_Class_Proxy::CreateProxiedObject(const PPB_Var_Deprecated* var,
|
| Dispatcher* dispatcher,
|
| PP_Module module_id,
|
|
|