diff options
author | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 23:25:02 +0000 |
---|---|---|
committer | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 23:25:02 +0000 |
commit | d30d42e6099d682d67afad58275bcfba97e2652e (patch) | |
tree | 92a4e4aadfb48035eb51a62a869b7fdd83cb6a34 /content | |
parent | 4a2a4d2400b936075e577cca740964cb8e7fa7aa (diff) | |
download | chromium_src-d30d42e6099d682d67afad58275bcfba97e2652e.zip chromium_src-d30d42e6099d682d67afad58275bcfba97e2652e.tar.gz chromium_src-d30d42e6099d682d67afad58275bcfba97e2652e.tar.bz2 |
Fix build break in r93970 due to style issue.
TEST=built on OSX
BUG=none
Review URL: http://codereview.chromium.org/7465023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93992 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/renderer/webplugin_delegate_proxy.cc | 4 | ||||
-rw-r--r-- | content/renderer/webplugin_delegate_proxy.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/content/renderer/webplugin_delegate_proxy.cc b/content/renderer/webplugin_delegate_proxy.cc index d17b6bd..cfd206b 100644 --- a/content/renderer/webplugin_delegate_proxy.cc +++ b/content/renderer/webplugin_delegate_proxy.cc @@ -183,6 +183,10 @@ WebPluginDelegateProxy::~WebPluginDelegateProxy() { WebBindings::releaseObject(npobject_); } +WebPluginDelegateProxy::SharedBitmap::SharedBitmap() {} + +WebPluginDelegateProxy::SharedBitmap::~SharedBitmap() {} + void WebPluginDelegateProxy::PluginDestroyed() { #if defined(OS_MACOSX) // Ensure that the renderer doesn't think the plugin still has focus. diff --git a/content/renderer/webplugin_delegate_proxy.h b/content/renderer/webplugin_delegate_proxy.h index 22d2bd3..8bb4a70 100644 --- a/content/renderer/webplugin_delegate_proxy.h +++ b/content/renderer/webplugin_delegate_proxy.h @@ -128,6 +128,9 @@ class WebPluginDelegateProxy private: struct SharedBitmap { + SharedBitmap(); + ~SharedBitmap(); + scoped_ptr<TransportDIB> dib; scoped_ptr<skia::PlatformCanvas> canvas; }; |