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

Side by Side Diff: ppapi/thunk/ppb_media_stream_video_track_thunk.cc

Issue 1778683003: Ran 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 unified diff | Download patch
« no previous file with comments | « ppapi/thunk/ppb_media_stream_audio_track_thunk.cc ('k') | ppapi/thunk/ppb_messaging_thunk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 Tue Jun 24 15:44:15 2014.
6
7 #include <stdint.h>
8 6
9 #include "ppapi/c/pp_completion_callback.h" 7 #include "ppapi/c/pp_completion_callback.h"
10 #include "ppapi/c/pp_errors.h" 8 #include "ppapi/c/pp_errors.h"
11 #include "ppapi/c/ppb_media_stream_video_track.h" 9 #include "ppapi/c/ppb_media_stream_video_track.h"
12 #include "ppapi/shared_impl/tracked_callback.h" 10 #include "ppapi/shared_impl/tracked_callback.h"
13 #include "ppapi/thunk/enter.h" 11 #include "ppapi/thunk/enter.h"
14 #include "ppapi/thunk/ppapi_thunk_export.h" 12 #include "ppapi/thunk/ppapi_thunk_export.h"
15 #include "ppapi/thunk/ppb_media_stream_video_track_api.h" 13 #include "ppapi/thunk/ppb_media_stream_video_track_api.h"
16 14
17 namespace ppapi { 15 namespace ppapi {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 &IsMediaStreamVideoTrack, 120 &IsMediaStreamVideoTrack,
123 &Configure, 121 &Configure,
124 &GetAttrib, 122 &GetAttrib,
125 &GetId, 123 &GetId,
126 &HasEnded, 124 &HasEnded,
127 &GetFrame, 125 &GetFrame,
128 &RecycleFrame, 126 &RecycleFrame,
129 &Close}; 127 &Close};
130 128
131 const PPB_MediaStreamVideoTrack_1_0 g_ppb_mediastreamvideotrack_thunk_1_0 = { 129 const PPB_MediaStreamVideoTrack_1_0 g_ppb_mediastreamvideotrack_thunk_1_0 = {
132 &Create, 130 &Create, &IsMediaStreamVideoTrack,
133 &IsMediaStreamVideoTrack, 131 &Configure, &GetAttrib,
134 &Configure, 132 &GetId, &HasEnded,
135 &GetAttrib, 133 &GetFrame, &RecycleFrame,
136 &GetId, 134 &Close, &GetEmptyFrame,
137 &HasEnded,
138 &GetFrame,
139 &RecycleFrame,
140 &Close,
141 &GetEmptyFrame,
142 &PutFrame}; 135 &PutFrame};
143 136
144 } // namespace 137 } // namespace
145 138
146 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_0_1* 139 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_0_1*
147 GetPPB_MediaStreamVideoTrack_0_1_Thunk() { 140 GetPPB_MediaStreamVideoTrack_0_1_Thunk() {
148 return &g_ppb_mediastreamvideotrack_thunk_0_1; 141 return &g_ppb_mediastreamvideotrack_thunk_0_1;
149 } 142 }
150 143
151 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_1_0* 144 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_1_0*
152 GetPPB_MediaStreamVideoTrack_1_0_Thunk() { 145 GetPPB_MediaStreamVideoTrack_1_0_Thunk() {
153 return &g_ppb_mediastreamvideotrack_thunk_1_0; 146 return &g_ppb_mediastreamvideotrack_thunk_1_0;
154 } 147 }
155 148
156 } // namespace thunk 149 } // namespace thunk
157 } // namespace ppapi 150 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_media_stream_audio_track_thunk.cc ('k') | ppapi/thunk/ppb_messaging_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698