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

Unified Diff: ppapi/thunk/ppb_video_encoder_thunk.cc

Issue 1161563002: Remove unused in-process pepper APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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_scrollbar_thunk.cc ('k') | ppapi/thunk/ppb_widget_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 19d93b1dfc66e0c2fafc603045d55c275f9f9d62..a53f2694d45f4f406331874b7f81d1ad11ae4f31 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 Fri Apr 17 10:38:38 2015.
+// From ppb_video_encoder.idl modified Mon May 18 12:43:25 2015.
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_errors.h"
@@ -64,12 +64,9 @@ 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) {
« no previous file with comments | « ppapi/thunk/ppb_scrollbar_thunk.cc ('k') | ppapi/thunk/ppb_widget_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698