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

Side by Side Diff: webrtc/modules/video_render/linux/video_render_linux_impl.h

Issue 1813173002: Deletes the class VideoRendererCallback. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase, and tweak of DEPS files. 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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
(...skipping 24 matching lines...) Expand all
35 virtual int32_t Init(); 35 virtual int32_t Init();
36 36
37 virtual int32_t ChangeWindow(void* window); 37 virtual int32_t ChangeWindow(void* window);
38 38
39 /************************************************************************** 39 /**************************************************************************
40 * 40 *
41 * Incoming Streams 41 * Incoming Streams
42 * 42 *
43 *************************************************************************** / 43 *************************************************************************** /
44 44
45 virtual VideoRenderCallback 45 virtual rtc::VideoSinkInterface<VideoFrame>
46 * AddIncomingRenderStream(const uint32_t streamId, 46 * AddIncomingRenderStream(const uint32_t streamId,
47 const uint32_t zOrder, 47 const uint32_t zOrder,
48 const float left, const float top, 48 const float left, const float top,
49 const float right, const float bottom); 49 const float right, const float bottom);
50 50
51 virtual int32_t 51 virtual int32_t
52 DeleteIncomingRenderStream(const uint32_t streamId); 52 DeleteIncomingRenderStream(const uint32_t streamId);
53 53
54 virtual int32_t 54 virtual int32_t
55 GetIncomingRenderStreamProperties(const uint32_t streamId, 55 GetIncomingRenderStreamProperties(const uint32_t streamId,
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 CriticalSectionWrapper& _renderLinuxCritsect; 119 CriticalSectionWrapper& _renderLinuxCritsect;
120 120
121 void* _ptrWindow; 121 void* _ptrWindow;
122 122
123 // X11 Render 123 // X11 Render
124 VideoX11Render* _ptrX11Render; 124 VideoX11Render* _ptrX11Render;
125 }; 125 };
126 126
127 } // namespace webrtc 127 } // namespace webrtc
128 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_LINUX_VIDEO_RENDER_LINUX_IMPL _H_ 128 #endif // WEBRTC_MODULES_VIDEO_RENDER_MAIN_SOURCE_LINUX_VIDEO_RENDER_LINUX_IMPL _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698