Index: ppapi/thunk/ppb_video_encoder_thunk.cc |
diff --git a/ppapi/thunk/ppb_video_encoder_thunk.cc b/ppapi/thunk/ppb_video_encoder_thunk.cc |
index 5b2aebaf500f13e36c269c660760e5373d10a609..bfd70c9d81ee3fa7601422e1dff989e38e4aa095 100644 |
--- a/ppapi/thunk/ppb_video_encoder_thunk.cc |
+++ b/ppapi/thunk/ppb_video_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_video_encoder.idl modified Wed Feb 4 05:19:27 2015. |
+// From ppb_video_encoder.idl modified Thu Feb 5 11:24:27 2015. |
#include "ppapi/c/pp_completion_callback.h" |
#include "ppapi/c/pp_errors.h" |
@@ -53,9 +53,12 @@ int32_t Initialize(PP_Resource video_encoder, |
EnterResource<PPB_VideoEncoder_API> enter(video_encoder, callback, true); |
if (enter.failed()) |
return enter.retval(); |
- return enter.SetResult(enter.object()->Initialize( |
- input_format, input_visible_size, output_profile, initial_bitrate, |
- acceleration, enter.callback())); |
+ return enter.SetResult(enter.object()->Initialize(input_format, |
+ input_visible_size, |
+ output_profile, |
+ initial_bitrate, |
+ acceleration, |
+ enter.callback())); |
} |
int32_t GetFramesRequired(PP_Resource video_encoder) { |