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

Unified Diff: ppapi/thunk/ppb_video_decoder_dev_thunk.cc

Issue 263893005: Rename some PPB_VideoDecoder_Dev implementation types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename resource creation API method CreateVideoDecoder (add Dev). Created 6 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_video_decoder_dev_api.h ('k') | ppapi/thunk/ppb_video_decoder_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_video_decoder_dev_thunk.cc
diff --git a/ppapi/thunk/ppb_video_decoder_thunk.cc b/ppapi/thunk/ppb_video_decoder_dev_thunk.cc
similarity index 82%
rename from ppapi/thunk/ppb_video_decoder_thunk.cc
rename to ppapi/thunk/ppb_video_decoder_dev_thunk.cc
index 2472d8ab321f641e3327deaa78150640b42c5955..0dddff9990920c4055c6b39801e57c6bf581c3b1 100644
--- a/ppapi/thunk/ppb_video_decoder_thunk.cc
+++ b/ppapi/thunk/ppb_video_decoder_dev_thunk.cc
@@ -5,16 +5,16 @@
#include "ppapi/c/pp_errors.h"
#include "ppapi/shared_impl/tracked_callback.h"
#include "ppapi/thunk/enter.h"
-#include "ppapi/thunk/thunk.h"
-#include "ppapi/thunk/ppb_video_decoder_api.h"
+#include "ppapi/thunk/ppb_video_decoder_dev_api.h"
#include "ppapi/thunk/resource_creation_api.h"
+#include "ppapi/thunk/thunk.h"
namespace ppapi {
namespace thunk {
namespace {
-typedef EnterResource<PPB_VideoDecoder_API> EnterVideoDecoder;
+typedef EnterResource<PPB_VideoDecoder_Dev_API> EnterVideoDecoder;
PP_Resource Create(PP_Instance instance,
PP_Resource graphics_3d,
@@ -22,7 +22,8 @@ PP_Resource Create(PP_Instance instance,
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
- return enter.functions()->CreateVideoDecoder(instance, graphics_3d, profile);
+ return enter.functions()->CreateVideoDecoderDev(
+ instance, graphics_3d, profile);
}
PP_Bool IsVideoDecoder(PP_Resource resource) {
@@ -36,8 +37,8 @@ int32_t Decode(PP_Resource video_decoder,
EnterVideoDecoder enter(video_decoder, callback, true);
if (enter.failed())
return enter.retval();
- return enter.SetResult(enter.object()->Decode(bitstream_buffer,
- enter.callback()));
+ return enter.SetResult(
+ enter.object()->Decode(bitstream_buffer, enter.callback()));
}
void AssignPictureBuffers(PP_Resource video_decoder,
@@ -61,8 +62,7 @@ int32_t Flush(PP_Resource video_decoder, PP_CompletionCallback callback) {
return enter.SetResult(enter.object()->Flush(enter.callback()));
}
-int32_t Reset(PP_Resource video_decoder,
- PP_CompletionCallback callback) {
+int32_t Reset(PP_Resource video_decoder, PP_CompletionCallback callback) {
EnterVideoDecoder enter(video_decoder, callback, true);
if (enter.failed())
return enter.retval();
@@ -75,7 +75,7 @@ void Destroy(PP_Resource video_decoder) {
enter.object()->Destroy();
}
-const PPB_VideoDecoder_Dev g_ppb_videodecoder_thunk = {
+const PPB_VideoDecoder_Dev g_ppb_videodecoder_dev_thunk = {
&Create,
&IsVideoDecoder,
&Decode,
@@ -89,7 +89,7 @@ const PPB_VideoDecoder_Dev g_ppb_videodecoder_thunk = {
} // namespace
const PPB_VideoDecoder_Dev_0_16* GetPPB_VideoDecoder_Dev_0_16_Thunk() {
- return &g_ppb_videodecoder_thunk;
+ return &g_ppb_videodecoder_dev_thunk;
}
} // namespace thunk
« no previous file with comments | « ppapi/thunk/ppb_video_decoder_dev_api.h ('k') | ppapi/thunk/ppb_video_decoder_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698