diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-06 03:15:48 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-06 03:15:48 +0000 |
commit | 97dd433374f7a5e5195fb6c65bdab33740b98e86 (patch) | |
tree | 9d75e9732ff0a56929c24fd5ffd82d5865382e3e /webkit/plugins/ppapi/mock_plugin_delegate.cc | |
parent | a82aa8513ec8f638ab2d68fca5e6a1a1d5fd1e67 (diff) | |
download | chromium_src-97dd433374f7a5e5195fb6c65bdab33740b98e86.zip chromium_src-97dd433374f7a5e5195fb6c65bdab33740b98e86.tar.gz chromium_src-97dd433374f7a5e5195fb6c65bdab33740b98e86.tar.bz2 |
Video Capture Pepper API
The API is very simple at this point but works end-to-end.
BUG=None
TEST=VideoCapture sample (in a later CL)
Review URL: http://codereview.chromium.org/7553003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95719 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 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc index 9dd6a16..fb2d1a7 100644 --- a/webkit/plugins/ppapi/mock_plugin_delegate.cc +++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc @@ -50,6 +50,12 @@ MockPluginDelegate::CreateVideoDecoder( return NULL; } +MockPluginDelegate::PlatformVideoCapture* +MockPluginDelegate::CreateVideoCapture( + media::VideoCapture::EventHandler* handler){ + return NULL; +} + MockPluginDelegate::PlatformAudio* MockPluginDelegate::CreateAudio( uint32_t sample_rate, uint32_t sample_count, |