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

Side by Side Diff: webrtc/media/devices/gtkvideorenderer.h

Issue 2609783002: Reland of place basictypes.h with stdint.h for int_t types. (Closed)
Patch Set: add basictypes.h to systeminfo.cc Created 3 years, 11 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 | « webrtc/media/base/videocommon.h ('k') | webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 // Definition of class GtkVideoRenderer that implements the abstract class 11 // Definition of class GtkVideoRenderer that implements the abstract class
12 // cricket::VideoRenderer via GTK. 12 // cricket::VideoRenderer via GTK.
13 13
14 #ifndef WEBRTC_MEDIA_DEVICES_GTKVIDEORENDERER_H_ 14 #ifndef WEBRTC_MEDIA_DEVICES_GTKVIDEORENDERER_H_
15 #define WEBRTC_MEDIA_DEVICES_GTKVIDEORENDERER_H_ 15 #define WEBRTC_MEDIA_DEVICES_GTKVIDEORENDERER_H_
16 16
17 #include <stdint.h>
18
17 #include <memory> 19 #include <memory>
18 20
19 #include "webrtc/base/basictypes.h"
20 #include "webrtc/media/base/videosinkinterface.h" 21 #include "webrtc/media/base/videosinkinterface.h"
21 22
22 typedef struct _GtkWidget GtkWidget; // forward declaration, defined in gtk.h 23 typedef struct _GtkWidget GtkWidget; // forward declaration, defined in gtk.h
23 namespace webrtc { 24 namespace webrtc {
24 class VideoFrame; 25 class VideoFrame;
25 } 26 }
26 27
27 namespace cricket { 28 namespace cricket {
28 29
29 class GtkVideoRenderer : public rtc::VideoSinkInterface<webrtc::VideoFrame> { 30 class GtkVideoRenderer : public rtc::VideoSinkInterface<webrtc::VideoFrame> {
(...skipping 20 matching lines...) Expand all
50 int initial_x_; 51 int initial_x_;
51 int initial_y_; 52 int initial_y_;
52 53
53 int width_; 54 int width_;
54 int height_; 55 int height_;
55 }; 56 };
56 57
57 } // namespace cricket 58 } // namespace cricket
58 59
59 #endif // WEBRTC_MEDIA_DEVICES_GTKVIDEORENDERER_H_ 60 #endif // WEBRTC_MEDIA_DEVICES_GTKVIDEORENDERER_H_
OLDNEW
« no previous file with comments | « webrtc/media/base/videocommon.h ('k') | webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698