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

Unified Diff: content/renderer/browser_plugin/browser_plugin_var_serialization_rules.h

Issue 10555029: Browser Plugin: Move to old directories (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
Index: content/renderer/browser_plugin/browser_plugin_var_serialization_rules.h
diff --git a/content/renderer/browser_plugin/browser_plugin_var_serialization_rules.h b/content/renderer/browser_plugin/browser_plugin_var_serialization_rules.h
deleted file mode 100644
index f169912d9e1e233136220be3b9b5d60967aac468..0000000000000000000000000000000000000000
--- a/content/renderer/browser_plugin/browser_plugin_var_serialization_rules.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2012 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 CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_VAR_SERIALIZATION_RULES_H_
-#define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_VAR_SERIALIZATION_RULES_H_
-
-#include "ppapi/proxy/var_serialization_rules.h"
-
-namespace content {
-
-// Implementation of the VarSerializationRules interface for the browser plugin.
-class BrowserPluginVarSerializationRules :
- public ppapi::proxy::VarSerializationRules {
- public:
- explicit BrowserPluginVarSerializationRules();
-
- // VarSerialization implementation.
- virtual PP_Var SendCallerOwned(const PP_Var& var) OVERRIDE;
- virtual PP_Var BeginReceiveCallerOwned(const PP_Var& var) OVERRIDE;
- virtual void EndReceiveCallerOwned(const PP_Var& var) OVERRIDE;
- virtual PP_Var ReceivePassRef(const PP_Var& var) OVERRIDE;
- virtual PP_Var BeginSendPassRef(const PP_Var& var) OVERRIDE;
- virtual void EndSendPassRef(const PP_Var& var) OVERRIDE;
- virtual void ReleaseObjectRef(const PP_Var& var) OVERRIDE;
-
- private:
- virtual ~BrowserPluginVarSerializationRules();
-
- DISALLOW_COPY_AND_ASSIGN(BrowserPluginVarSerializationRules);
-};
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_VAR_SERIALIZATION_RULES_H_

Powered by Google App Engine
This is Rietveld 408576698