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

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

Issue 8749010: Whitespace style fix (that I previously overlooked). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_audio_input_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_audio_input_impl.cc b/webkit/plugins/ppapi/ppb_audio_input_impl.cc
index cad426fd1983b5c9e6057d679069d411eeb718ae..8b4c114f3b30c1e8fd4fc4db37a1fa53970449a0 100644
--- a/webkit/plugins/ppapi/ppb_audio_input_impl.cc
+++ b/webkit/plugins/ppapi/ppb_audio_input_impl.cc
@@ -44,10 +44,11 @@ PPB_AudioInput_Impl::~PPB_AudioInput_Impl() {
}
// static
-PP_Resource PPB_AudioInput_Impl::Create(PP_Instance instance,
- PP_Resource config,
- PPB_AudioInput_Callback audio_input_callback,
- void* user_data) {
+PP_Resource PPB_AudioInput_Impl::Create(
+ PP_Instance instance,
+ PP_Resource config,
+ PPB_AudioInput_Callback audio_input_callback,
+ void* user_data) {
scoped_refptr<PPB_AudioInput_Impl>
audio_input(new PPB_AudioInput_Impl(instance));
if (!audio_input->Init(config, audio_input_callback, user_data))
@@ -111,7 +112,8 @@ PP_Bool PPB_AudioInput_Impl::StopCapture() {
return PP_TRUE;
}
-int32_t PPB_AudioInput_Impl::OpenTrusted(PP_Resource config,
+int32_t PPB_AudioInput_Impl::OpenTrusted(
+ PP_Resource config,
PP_CompletionCallback create_callback) {
// Validate the config and keep a reference to it.
EnterResourceNoLock<PPB_AudioConfig_API> enter(config, true);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698