summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/pepper_plugin_delegate_impl.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-14 19:23:25 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-14 19:23:25 +0000
commitb32dd4631c5142da0345147918ce200aa23d1f4f (patch)
treed746ad7e961915d5e545ca6ab43e4d9c07b03e8c /chrome/renderer/pepper_plugin_delegate_impl.h
parent6a98903971dc62cbb7c67510ea559a51d21222c7 (diff)
downloadchromium_src-b32dd4631c5142da0345147918ce200aa23d1f4f.zip
chromium_src-b32dd4631c5142da0345147918ce200aa23d1f4f.tar.gz
chromium_src-b32dd4631c5142da0345147918ce200aa23d1f4f.tar.bz2
Revert changes accidentally checked in with my property changes.
TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49708 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/pepper_plugin_delegate_impl.h')
-rw-r--r--chrome/renderer/pepper_plugin_delegate_impl.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/renderer/pepper_plugin_delegate_impl.h b/chrome/renderer/pepper_plugin_delegate_impl.h
index 058a79c..870a032 100644
--- a/chrome/renderer/pepper_plugin_delegate_impl.h
+++ b/chrome/renderer/pepper_plugin_delegate_impl.h
@@ -5,8 +5,6 @@
#ifndef CHROME_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
#define CHROME_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
-#include <set>
-
#include "base/basictypes.h"
#include "base/weak_ptr.h"
#include "webkit/glue/plugins/pepper_plugin_delegate.h"
@@ -19,22 +17,13 @@ class PepperPluginDelegateImpl
public:
explicit PepperPluginDelegateImpl(RenderView* render_view);
- // Called by RenderView to tell us about painting events, these two functions
- // just correspond to the DidInitiatePaint and DidFlushPaint in R.V..
- void ViewInitiatedPaint();
- void ViewFlushedPaint();
-
// pepper::PluginDelegate implementation.
- virtual void InstanceCreated(pepper::PluginInstance* instance);
- virtual void InstanceDeleted(pepper::PluginInstance* instance);
virtual PlatformImage2D* CreateImage2D(int width, int height);
private:
// Pointer to the RenderView that owns us.
RenderView* render_view_;
- std::set<pepper::PluginInstance*> active_instances_;
-
DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
};