From 8e16e61d64c6d4df7ba7ed0257b4bd25f32d2bcf Mon Sep 17 00:00:00 2001 From: Per Date: Thu, 11 Feb 2016 15:56:51 +0100 Subject: [PATCH] Added empty files for VideoBroadcaster so adding them don't break Chrome. Cl where implementation is added: https://codereview.webrtc.org/1689923002/ TBR=kjellander@webrtc.org BUG=webrtc:5426 Review URL: https://codereview.webrtc.org/1688033004 . Cr-Commit-Position: refs/heads/master@{#11579} --- webrtc/media/base/videobroadcaster.cc | 14 ++++++++++++++ webrtc/media/base/videobroadcaster.h | 16 ++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 webrtc/media/base/videobroadcaster.cc create mode 100644 webrtc/media/base/videobroadcaster.h diff --git a/webrtc/media/base/videobroadcaster.cc b/webrtc/media/base/videobroadcaster.cc new file mode 100644 index 0000000000..a9f6eaee4c --- /dev/null +++ b/webrtc/media/base/videobroadcaster.cc @@ -0,0 +1,14 @@ +/* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#include "webrtc/media/base/videobroadcaster.h" + +// TODO(perkj): Implement. + diff --git a/webrtc/media/base/videobroadcaster.h b/webrtc/media/base/videobroadcaster.h new file mode 100644 index 0000000000..f0009c92ac --- /dev/null +++ b/webrtc/media/base/videobroadcaster.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. + * + * Use of this source code is governed by a BSD-style license + * that can be found in the LICENSE file in the root of the source + * tree. An additional intellectual property rights grant can be found + * in the file PATENTS. All contributing project authors may + * be found in the AUTHORS file in the root of the source tree. + */ + +#ifndef WEBRTC_MEDIA_BASE_VIDEOBROADCASTER_H_ +#define WEBRTC_MEDIA_BASE_VIDEOBROADCASTER_H_ + +// TODO(perkj): Implement. + +#endif // WEBRTC_MEDIA_BASE_VIDEOBROADCASTER_H_