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

Unified Diff: ppapi/proxy/proxy_object_var.h

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_var_deprecated_proxy.cc ('k') | ppapi/proxy/proxy_object_var.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « ppapi/proxy/ppb_var_deprecated_proxy.cc ('k') | ppapi/proxy/proxy_object_var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698