| Index: ppapi/proxy/proxy_object_var.h
|
| diff --git a/ppapi/proxy/proxy_object_var.h b/ppapi/proxy/proxy_object_var.h
|
| index e9760f9cf7a7e1346a99db30d2f5e556d8ff3e1d..88a4646616dd5cffd347bb0ff3e576a20d346093 100644
|
| --- a/ppapi/proxy/proxy_object_var.h
|
| +++ b/ppapi/proxy/proxy_object_var.h
|
| @@ -11,7 +11,7 @@
|
| namespace ppapi {
|
|
|
| namespace proxy {
|
| -class PluginDispatcher;
|
| +class Dispatcher;
|
| } // namespace proxy
|
|
|
| // Tracks a reference to an object var in the plugin side of the proxy. This
|
| @@ -19,7 +19,7 @@ class PluginDispatcher;
|
| // integrating this with PP_Var creation.
|
| class ProxyObjectVar : public Var {
|
| public:
|
| - ProxyObjectVar(proxy::PluginDispatcher* dispatcher,
|
| + ProxyObjectVar(proxy::Dispatcher* dispatcher,
|
| int32 host_var_id);
|
|
|
| virtual ~ProxyObjectVar();
|
| @@ -28,7 +28,7 @@ class ProxyObjectVar : public Var {
|
| virtual ProxyObjectVar* AsProxyObjectVar() OVERRIDE;
|
| virtual PP_VarType GetType() const OVERRIDE;
|
|
|
| - proxy::PluginDispatcher* dispatcher() const { return dispatcher_; }
|
| + proxy::Dispatcher* dispatcher() const { return dispatcher_; }
|
| int32 host_var_id() const { return host_var_id_; }
|
|
|
| // Expose AssignVarID on Var so the PluginResourceTracker can call us when
|
| @@ -36,7 +36,7 @@ class ProxyObjectVar : public Var {
|
| void AssignVarID(int32 id);
|
|
|
| private:
|
| - proxy::PluginDispatcher* dispatcher_;
|
| + proxy::Dispatcher* dispatcher_;
|
| int32 host_var_id_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ProxyObjectVar);
|
|
|