summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/plugin_var_serialization_rules.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 03:13:01 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 03:13:01 +0000
commit1a4d9cb51c770cc70f1eba7c7b07bcf45baade6d (patch)
treebe769022c3a43f3bf0e84c3aa9e3ad15c8cd5a57 /ppapi/proxy/plugin_var_serialization_rules.h
parent4bcab1c571c6b11a51e4493e3387733a6c95bbac (diff)
downloadchromium_src-1a4d9cb51c770cc70f1eba7c7b07bcf45baade6d.zip
chromium_src-1a4d9cb51c770cc70f1eba7c7b07bcf45baade6d.tar.gz
chromium_src-1a4d9cb51c770cc70f1eba7c7b07bcf45baade6d.tar.bz2
Revert PPAPI proxy change with too many files in it.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64870 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/plugin_var_serialization_rules.h')
-rw-r--r--ppapi/proxy/plugin_var_serialization_rules.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/ppapi/proxy/plugin_var_serialization_rules.h b/ppapi/proxy/plugin_var_serialization_rules.h
deleted file mode 100644
index f2d8224..0000000
--- a/ppapi/proxy/plugin_var_serialization_rules.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2010 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_PLUGIN_VAR_SERIALIZATION_RULES_H_
-#define PPAPI_PROXY_PLUGIN_VAR_SERIALIZATION_RULES_H_
-
-#include "base/basictypes.h"
-#include "ppapi/proxy/var_serialization_rules.h"
-
-namespace pp {
-namespace proxy {
-
-class PluginVarTracker;
-
-// Implementation of the VarSerialization interface for the plugin.
-class PluginVarSerializationRules : public VarSerializationRules {
- public:
- // This class with use the given non-owning pointer to the var tracker to
- // handle object refcounting and string conversion.
- PluginVarSerializationRules(PluginVarTracker* tracker);
- ~PluginVarSerializationRules();
-
- // VarSerialization implementation.
- virtual void SendCallerOwned(const PP_Var& var, std::string* str_val);
- virtual PP_Var BeginReceiveCallerOwned(const PP_Var& var,
- const std::string* str_val);
- virtual void EndReceiveCallerOwned(const PP_Var& var);
- virtual PP_Var ReceivePassRef(const PP_Var& var,
- const std::string& str_val);
- virtual void BeginSendPassRef(const PP_Var& var, std::string* str_val);
- virtual void EndSendPassRef(const PP_Var& var);
- virtual void ReleaseObjectRef(const PP_Var& var);
-
- private:
- PluginVarTracker* var_tracker_;
-
- DISALLOW_COPY_AND_ASSIGN(PluginVarSerializationRules);
-};
-
-} // namespace proxy
-} // namespace pp
-
-#endif // PPAPI_PROXY_PLUGIN_VAR_SERIALIZATION_RULES_H_