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

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

Issue 9557007: PPB_AudioInput_Dev: support multiple audio input devices - Part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changes in response to Trung's comments. Created 8 years, 9 months 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
« no previous file with comments | « webkit/plugins/ppapi/resource_creation_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/resource_creation_impl.cc
diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
index 4ef430e3505f330f00a8d13f68515cdf756e8db0..b2fd688d8873687dc870b007418b1c10429e31f9 100644
--- a/webkit/plugins/ppapi/resource_creation_impl.cc
+++ b/webkit/plugins/ppapi/resource_creation_impl.cc
@@ -80,17 +80,16 @@ PP_Resource ResourceCreationImpl::CreateAudioTrusted(
return (new PPB_Audio_Impl(instance))->GetReference();
}
-PP_Resource ResourceCreationImpl::CreateAudioInput(
+PP_Resource ResourceCreationImpl::CreateAudioInput0_1(
PP_Instance instance,
PP_Resource config_id,
PPB_AudioInput_Callback audio_input_callback,
void* user_data) {
- return PPB_AudioInput_Impl::Create(instance, config_id,
+ return PPB_AudioInput_Impl::Create0_1(instance, config_id,
audio_input_callback, user_data);
}
-PP_Resource ResourceCreationImpl::CreateAudioInputTrusted(
- PP_Instance instance) {
+PP_Resource ResourceCreationImpl::CreateAudioInput(PP_Instance instance) {
return (new PPB_AudioInput_Impl(instance))->GetReference();
}
« no previous file with comments | « webkit/plugins/ppapi/resource_creation_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698