Delete empty API files and cleaned up includes.
TBR=glaznev@webrtc.org BUG=webrtc:5426 Review URL: https://codereview.webrtc.org/1809053002 Cr-Commit-Position: refs/heads/master@{#12039}
This commit is contained in:
parent
8811b35960
commit
c9022f5086
@ -50,7 +50,6 @@
|
||||
#include "webrtc/api/audiotrack.h"
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
#include "webrtc/api/peerconnectioninterface.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/videotrack.h"
|
||||
#include "webrtc/base/logging.h"
|
||||
#include "webrtc/base/ssladapter.h"
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
|
||||
#import "RTCVideoCapturer.h"
|
||||
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
|
||||
@interface RTCVideoCapturer (Internal)
|
||||
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
|
||||
#import "RTCVideoSource.h"
|
||||
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
|
||||
@interface RTCVideoSource (Internal)
|
||||
|
||||
|
||||
@ -299,8 +299,6 @@
|
||||
'proxy.h',
|
||||
'remoteaudiosource.cc',
|
||||
'remoteaudiosource.h',
|
||||
'remotevideocapturer.cc',
|
||||
'remotevideocapturer.h',
|
||||
'rtpparameters.h',
|
||||
'rtpreceiver.cc',
|
||||
'rtpreceiver.h',
|
||||
@ -317,7 +315,6 @@
|
||||
'streamcollection.h',
|
||||
'videocapturertracksource.cc',
|
||||
'videocapturertracksource.h',
|
||||
'videosourceinterface.h',
|
||||
'videosourceproxy.h',
|
||||
'videotrack.cc',
|
||||
'videotrack.h',
|
||||
|
||||
@ -55,7 +55,6 @@
|
||||
#include "webrtc/api/peerconnectioninterface.h"
|
||||
#include "webrtc/api/rtpreceiverinterface.h"
|
||||
#include "webrtc/api/rtpsenderinterface.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/webrtcsdp.h"
|
||||
#include "webrtc/base/bind.h"
|
||||
#include "webrtc/base/checks.h"
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
|
||||
#import "RTCVideoSource.h"
|
||||
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
|
||||
@ -25,7 +25,6 @@
|
||||
#include "webrtc/api/mediastreamproxy.h"
|
||||
#include "webrtc/api/mediastreamtrackproxy.h"
|
||||
#include "webrtc/api/remoteaudiosource.h"
|
||||
#include "webrtc/api/remotevideocapturer.h"
|
||||
#include "webrtc/api/rtpreceiver.h"
|
||||
#include "webrtc/api/rtpsender.h"
|
||||
#include "webrtc/api/streamcollection.h"
|
||||
|
||||
@ -29,7 +29,6 @@
|
||||
#include "webrtc/api/test/fakeperiodicvideocapturer.h"
|
||||
#include "webrtc/api/test/fakevideotrackrenderer.h"
|
||||
#include "webrtc/api/test/mockpeerconnectionobservers.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/base/gunit.h"
|
||||
#include "webrtc/base/physicalsocketserver.h"
|
||||
#include "webrtc/base/scoped_ptr.h"
|
||||
|
||||
@ -18,7 +18,6 @@
|
||||
#endif
|
||||
#include "webrtc/api/test/fakedtlsidentitystore.h"
|
||||
#include "webrtc/api/test/fakevideotrackrenderer.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/base/gunit.h"
|
||||
#include "webrtc/base/scoped_ptr.h"
|
||||
#include "webrtc/base/thread.h"
|
||||
|
||||
@ -1,13 +0,0 @@
|
||||
/*
|
||||
* Copyright 2013 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/api/remotevideocapturer.h"
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome gyp file doesn't depend on it.
|
||||
@ -1,16 +0,0 @@
|
||||
/*
|
||||
* Copyright 2013 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_API_REMOTEVIDEOCAPTURER_H_
|
||||
#define WEBRTC_API_REMOTEVIDEOCAPTURER_H_
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome gyp file doesn't depend on it.
|
||||
|
||||
#endif // WEBRTC_API_REMOTEVIDEOCAPTURER_H_
|
||||
@ -11,7 +11,7 @@
|
||||
#include "webrtc/api/rtpsender.h"
|
||||
|
||||
#include "webrtc/api/localaudiosource.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
#include "webrtc/base/helpers.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
@ -14,7 +14,6 @@
|
||||
#include "webrtc/api/test/fakeperiodicvideocapturer.h"
|
||||
#include "webrtc/api/test/mockpeerconnectionobservers.h"
|
||||
#include "webrtc/api/test/peerconnectiontestwrapper.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/base/gunit.h"
|
||||
#include "webrtc/p2p/client/fakeportallocator.h"
|
||||
|
||||
|
||||
@ -11,7 +11,6 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "webrtc/api/remotevideocapturer.h"
|
||||
#include "webrtc/api/test/fakeconstraints.h"
|
||||
#include "webrtc/api/videocapturertracksource.h"
|
||||
#include "webrtc/base/gunit.h"
|
||||
|
||||
@ -1,11 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome build files doesn't depend on it.
|
||||
@ -1,11 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012 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.
|
||||
*/
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome build files doesn't depend on it.
|
||||
@ -1,18 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012 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_API_VIDEOSOURCEINTERFACE_H_
|
||||
#define WEBRTC_API_VIDEOSOURCEINTERFACE_H_
|
||||
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome build files doesn't depend on it.
|
||||
|
||||
#endif // WEBRTC_API_VIDEOSOURCEINTERFACE_H_
|
||||
@ -12,7 +12,7 @@
|
||||
#define WEBRTC_API_VIDEOSOURCEPROXY_H_
|
||||
|
||||
#include "webrtc/api/proxy.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
||||
@ -15,8 +15,6 @@
|
||||
#include <vector>
|
||||
|
||||
#include "webrtc/api/mediastreamtrack.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/videotrackrenderers.h"
|
||||
#include "webrtc/base/scoped_ref_ptr.h"
|
||||
#include "webrtc/base/thread_checker.h"
|
||||
#include "webrtc/media/base/videosourcebase.h"
|
||||
|
||||
@ -1,13 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012 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/api/videotrackrenderers.h"
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome builds doesnt depend on it.
|
||||
@ -1,16 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012 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_API_VIDEOTRACKRENDERERS_H_
|
||||
#define WEBRTC_API_VIDEOTRACKRENDERERS_H_
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome builds doesnt depend on it.
|
||||
|
||||
#endif // WEBRTC_API_VIDEOTRACKRENDERERS_H_
|
||||
@ -11,8 +11,8 @@
|
||||
#ifndef WEBRTC_API_VIDEOTRACKSOURCE_H_
|
||||
#define WEBRTC_API_VIDEOTRACKSOURCE_H_
|
||||
|
||||
#include "webrtc/api/mediastreaminterface.h"
|
||||
#include "webrtc/api/notifier.h"
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/media/base/mediachannel.h"
|
||||
#include "webrtc/media/base/videosinkinterface.h"
|
||||
|
||||
|
||||
@ -13,7 +13,6 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "webrtc/api/videosourceinterface.h"
|
||||
#include "webrtc/api/test/fakeconstraints.h"
|
||||
#include "webrtc/base/common.h"
|
||||
#include "webrtc/base/json.h"
|
||||
|
||||
@ -1,13 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2012 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/capturemanager.h"
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome's gyp file doesn't depend on it.
|
||||
@ -1,11 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2012 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.
|
||||
*/
|
||||
|
||||
// TODO(perkj): Remove this file once Chrome's gyp file doesn't depend on it.
|
||||
@ -1,11 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2012 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.
|
||||
*/
|
||||
|
||||
// TODO(perkj): Remove this dummy file once Chrome is not depending on it.
|
||||
@ -1,11 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2012 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.
|
||||
*/
|
||||
|
||||
// TODO(perkj): Remove this dummy file once Chrome is not depending on it.
|
||||
@ -33,8 +33,6 @@
|
||||
'sources': [
|
||||
'base/audioframe.h',
|
||||
'base/audiosource.h',
|
||||
'base/capturemanager.cc',
|
||||
'base/capturemanager.h',
|
||||
'base/codec.cc',
|
||||
'base/codec.h',
|
||||
'base/cpuid.cc',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user