Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Unified Diff: ppapi/proxy/ppb_var_deprecated_proxy.cc

Issue 9609008: Implemented Browser Plugin (NOT FOR REVIEW) (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Merge with ToT. GuestToEmbedderChannel is now Dispatcher. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppb_graphics_3d_proxy.cc ('k') | ppapi/proxy/proxy_object_var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « ppapi/proxy/ppb_graphics_3d_proxy.cc ('k') | ppapi/proxy/proxy_object_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698