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

Unified Diff: ppapi/thunk/ppb_audio_encoder_thunk.cc

Issue 1820873005: Run ppapi/generators/generator.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « ppapi/thunk/ppb_audio_buffer_thunk.cc ('k') | ppapi/thunk/ppb_camera_capabilities_private_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_audio_encoder_thunk.cc
diff --git a/ppapi/thunk/ppb_audio_encoder_thunk.cc b/ppapi/thunk/ppb_audio_encoder_thunk.cc
index f8355bb85673f6b598ff09abede46113983aceed..89d4b8c4a0ec01fa0da8f100a8767c0115a4cc12 100644
--- a/ppapi/thunk/ppb_audio_encoder_thunk.cc
+++ b/ppapi/thunk/ppb_audio_encoder_thunk.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// From ppb_audio_encoder.idl modified Mon Sep 7 10:17:53 2015.
+// From ppb_audio_encoder.idl modified Wed Jan 27 17:39:22 2016.
#include <stdint.h>
@@ -56,13 +56,9 @@ int32_t Initialize(PP_Resource audio_encoder,
EnterResource<PPB_AudioEncoder_API> enter(audio_encoder, callback, true);
if (enter.failed())
return enter.retval();
- return enter.SetResult(enter.object()->Initialize(channels,
- input_sample_rate,
- input_sample_size,
- output_profile,
- initial_bitrate,
- acceleration,
- enter.callback()));
+ return enter.SetResult(enter.object()->Initialize(
+ channels, input_sample_rate, input_sample_size, output_profile,
+ initial_bitrate, acceleration, enter.callback()));
}
int32_t GetNumberOfSamples(PP_Resource audio_encoder) {
« no previous file with comments | « ppapi/thunk/ppb_audio_buffer_thunk.cc ('k') | ppapi/thunk/ppb_camera_capabilities_private_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698