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

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

Issue 8574029: Microphone support for Pepper Flash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MessageLoop -> base::MessageLoopProxy Created 9 years, 1 month 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: webkit/plugins/ppapi/mock_plugin_delegate.cc
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc
index 4a914bd8d5a4c8378172690f141d367b9a026ae5..80594fc86a752b0a189046c7879c4a9998726d03 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
@@ -71,7 +71,14 @@ MockPluginDelegate::CreateVideoCapture(
MockPluginDelegate::PlatformAudio* MockPluginDelegate::CreateAudio(
uint32_t sample_rate,
uint32_t sample_count,
- PlatformAudio::Client* client) {
+ PlatformAudioCommonClient* client) {
+ return NULL;
+}
+
+MockPluginDelegate::PlatformAudioInput* MockPluginDelegate::CreateAudioInput(
+ uint32_t sample_rate,
+ uint32_t sample_count,
+ PlatformAudioCommonClient* client) {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698