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

Unified Diff: ppapi/proxy/proxy_object_var.h

Issue 7578001: Unify var tracking between webkit and the proxy. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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/ppp_messaging_proxy_test.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
===================================================================
--- ppapi/proxy/proxy_object_var.h (revision 0)
+++ ppapi/proxy/proxy_object_var.h (revision 0)
@@ -0,0 +1,50 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PPAPI_PROXY_PROXY_OBJECT_VAR_H_
+#define PPAPI_PROXY_PROXY_OBJECT_VAR_H_
+
+#include "base/compiler_specific.h"
+#include "ppapi/shared_impl/var.h"
+
+namespace pp {
+namespace proxy {
+class PluginDispatcher;
+} // namespace proxy
+} // namespace pp
+
+namespace ppapi {
+
+// Tracks a reference to an object var in the plugin side of the proxy. This
+// just stores the dispatcher and host var ID, and provides the interface for
+// integrating this with PP_Var creation.
+class ProxyObjectVar : public Var {
+ public:
+ ProxyObjectVar(pp::proxy::PluginDispatcher* dispatcher,
+ int32 host_var_id);
+
+ virtual ~ProxyObjectVar();
+
+ // Var overrides.
+ virtual ProxyObjectVar* AsProxyObjectVar() OVERRIDE;
+ virtual PP_Var GetPPVar() OVERRIDE;
+ virtual PP_VarType GetType() const OVERRIDE;
+
+ pp::proxy::PluginDispatcher* dispatcher() const { return dispatcher_; }
+ int32 host_var_id() const { return host_var_id_; }
+
+ // Expose AssignVarID on Var so the PluginResourceTracker can call us when
+ // it's creating IDs.
+ void AssignVarID(int32 id);
+
+ private:
+ pp::proxy::PluginDispatcher* dispatcher_;
+ int32 host_var_id_;
+
+ DISALLOW_COPY_AND_ASSIGN(ProxyObjectVar);
+};
+
+} // namespace ppapi
+
+#endif // PPAPI_PROXY_PROXY_OBJECT_VAR_H_
Property changes on: ppapi/proxy/proxy_object_var.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « ppapi/proxy/ppp_messaging_proxy_test.cc ('k') | ppapi/proxy/proxy_object_var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698