| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // From ppb_media_stream_video_track.idl modified Thu Sep 18 11:36:39 2014. | 5 // From ppb_media_stream_video_track.idl modified Wed Jan 27 17:10:16 2016. |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include "ppapi/c/pp_completion_callback.h" | 9 #include "ppapi/c/pp_completion_callback.h" |
| 10 #include "ppapi/c/pp_errors.h" | 10 #include "ppapi/c/pp_errors.h" |
| 11 #include "ppapi/c/ppb_media_stream_video_track.h" | 11 #include "ppapi/c/ppb_media_stream_video_track.h" |
| 12 #include "ppapi/shared_impl/tracked_callback.h" | 12 #include "ppapi/shared_impl/tracked_callback.h" |
| 13 #include "ppapi/thunk/enter.h" | 13 #include "ppapi/thunk/enter.h" |
| 14 #include "ppapi/thunk/ppapi_thunk_export.h" | 14 #include "ppapi/thunk/ppapi_thunk_export.h" |
| 15 #include "ppapi/thunk/ppb_media_stream_video_track_api.h" | 15 #include "ppapi/thunk/ppb_media_stream_video_track_api.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 &IsMediaStreamVideoTrack, | 122 &IsMediaStreamVideoTrack, |
| 123 &Configure, | 123 &Configure, |
| 124 &GetAttrib, | 124 &GetAttrib, |
| 125 &GetId, | 125 &GetId, |
| 126 &HasEnded, | 126 &HasEnded, |
| 127 &GetFrame, | 127 &GetFrame, |
| 128 &RecycleFrame, | 128 &RecycleFrame, |
| 129 &Close}; | 129 &Close}; |
| 130 | 130 |
| 131 const PPB_MediaStreamVideoTrack_1_0 g_ppb_mediastreamvideotrack_thunk_1_0 = { | 131 const PPB_MediaStreamVideoTrack_1_0 g_ppb_mediastreamvideotrack_thunk_1_0 = { |
| 132 &Create, | 132 &Create, &IsMediaStreamVideoTrack, |
| 133 &IsMediaStreamVideoTrack, | 133 &Configure, &GetAttrib, |
| 134 &Configure, | 134 &GetId, &HasEnded, |
| 135 &GetAttrib, | 135 &GetFrame, &RecycleFrame, |
| 136 &GetId, | 136 &Close, &GetEmptyFrame, |
| 137 &HasEnded, | |
| 138 &GetFrame, | |
| 139 &RecycleFrame, | |
| 140 &Close, | |
| 141 &GetEmptyFrame, | |
| 142 &PutFrame}; | 137 &PutFrame}; |
| 143 | 138 |
| 144 } // namespace | 139 } // namespace |
| 145 | 140 |
| 146 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_0_1* | 141 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_0_1* |
| 147 GetPPB_MediaStreamVideoTrack_0_1_Thunk() { | 142 GetPPB_MediaStreamVideoTrack_0_1_Thunk() { |
| 148 return &g_ppb_mediastreamvideotrack_thunk_0_1; | 143 return &g_ppb_mediastreamvideotrack_thunk_0_1; |
| 149 } | 144 } |
| 150 | 145 |
| 151 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_1_0* | 146 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_1_0* |
| 152 GetPPB_MediaStreamVideoTrack_1_0_Thunk() { | 147 GetPPB_MediaStreamVideoTrack_1_0_Thunk() { |
| 153 return &g_ppb_mediastreamvideotrack_thunk_1_0; | 148 return &g_ppb_mediastreamvideotrack_thunk_1_0; |
| 154 } | 149 } |
| 155 | 150 |
| 156 } // namespace thunk | 151 } // namespace thunk |
| 157 } // namespace ppapi | 152 } // namespace ppapi |
| OLD | NEW |