diff options
author | piman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-30 23:54:51 +0000 |
---|---|---|
committer | piman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-30 23:54:51 +0000 |
commit | 3962ea98fe59edad2b2c1dcb1b1893304526369b (patch) | |
tree | 65d1d131d62a1b5938cc37ed4dcf7eeab723d565 /webkit/plugins/ppapi/mock_plugin_delegate.cc | |
parent | 2d02bea25a2ea6d67c3d1f4a06d3bbe697938163 (diff) | |
download | chromium_src-3962ea98fe59edad2b2c1dcb1b1893304526369b.zip chromium_src-3962ea98fe59edad2b2c1dcb1b1893304526369b.tar.gz chromium_src-3962ea98fe59edad2b2c1dcb1b1893304526369b.tar.bz2 |
Revert 98767 - Reimplement the Pepper fullscreen API to use webkitRequestFullScreen and friends.
This depends on https://bugs.webkit.org/show_bug.cgi?id=66746 and http://codereview.chromium.org/7461059/, neither of which have been landed. So this should be considered a preliminary review at this stage :)
BUG=
TEST=
Review URL: http://codereview.chromium.org/7714017
TBR=koz@chromium.org
Review URL: http://codereview.chromium.org/7740056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98896 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/mock_plugin_delegate.cc')
-rw-r--r-- | webkit/plugins/ppapi/mock_plugin_delegate.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc index b42dbf1..c34643a 100644 --- a/webkit/plugins/ppapi/mock_plugin_delegate.cc +++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc @@ -223,6 +223,11 @@ int32_t MockPluginDelegate::ShowContextMenu( return PP_ERROR_FAILED; } +FullscreenContainer* MockPluginDelegate::CreateFullscreenContainer( + PluginInstance* instance) { + return NULL; +} + gfx::Size MockPluginDelegate::GetScreenSize() { return gfx::Size(1024, 768); } |