Index: ppapi/proxy/ppb_var_deprecated_proxy.cc |
diff --git a/ppapi/proxy/ppb_var_deprecated_proxy.cc b/ppapi/proxy/ppb_var_deprecated_proxy.cc |
index fbd6ef9fa64fb5caad7d7994f0f7a873ee706074..d3a10d2c9d9118a9adcdc8e528e73e20a6cb4605 100644 |
--- a/ppapi/proxy/ppb_var_deprecated_proxy.cc |
+++ b/ppapi/proxy/ppb_var_deprecated_proxy.cc |
@@ -34,7 +34,7 @@ namespace { |
// exception is set, returns NULL. Otherwise, computes the dispatcher for the |
// given var object. If the var is not a valid object, returns NULL and sets |
// the exception. |
-PluginDispatcher* CheckExceptionAndGetDispatcher(const PP_Var& object, |
+Dispatcher* CheckExceptionAndGetDispatcher(const PP_Var& object, |
PP_Var* exception) { |
// If an exception is already set, we don't need to do anything, just return |
// an error to the caller. |
@@ -44,7 +44,7 @@ PluginDispatcher* CheckExceptionAndGetDispatcher(const PP_Var& object, |
if (object.type == PP_VARTYPE_OBJECT) { |
// Get the dispatcher for the object. |
- PluginDispatcher* dispatcher = |
+ Dispatcher* dispatcher = |
PluginGlobals::Get()->plugin_var_tracker()-> |
DispatcherForPluginObject(object); |
if (dispatcher) |