diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 843e1e6a44..614df535ff 100755 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -37,7 +37,6 @@ CPPLINT_BLACKLIST = [ 'webrtc/system_wrappers', 'webrtc/test', 'webrtc/voice_engine', - 'webrtc/call.h', 'webrtc/common_types.h', 'webrtc/common_types.cc', 'webrtc/video_send_stream.h', diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn index 1a79a12db2..991a7a3d0d 100644 --- a/webrtc/BUILD.gn +++ b/webrtc/BUILD.gn @@ -257,11 +257,7 @@ if (!build_with_chromium) { # Only the root target should depend on this. visibility = [ "//:default" ] - sources = [ - # TODO(ossu): Keep this here until donwstream projects have updated. - # http://bugs.webrtc.org/6716 - "call.h", - ] + sources = [] complete_static_lib = true defines = [] diff --git a/webrtc/DEPS b/webrtc/DEPS index 0f6d23722d..ba1c918951 100644 --- a/webrtc/DEPS +++ b/webrtc/DEPS @@ -9,7 +9,6 @@ include_rules = [ "+libyuv", "-webrtc", # Has to be disabled; otherwise all dirs below will be allowed. # Individual headers that will be moved out of here, see webrtc:4243. - "+webrtc/call.h", "+webrtc/common_types.h", "+webrtc/config.h", "+webrtc/transport.h", @@ -28,12 +27,6 @@ include_rules = [ # The below rules will be removed when webrtc:4243 is fixed. specific_include_rules = { - # The call/call.h exception is here only until the peerconnection - # implementation has been moved out of api/. See: - # http://bugs.webrtc.org/5883 - "call\.h": [ - "+webrtc/call/call.h" - ], "video_frame\.h": [ "+webrtc/common_video", ], diff --git a/webrtc/call.h b/webrtc/call.h deleted file mode 100644 index afea9ddd72..0000000000 --- a/webrtc/call.h +++ /dev/null @@ -1,13 +0,0 @@ -/* - * Copyright (c) 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. - */ - -// This file is deprecated. It has been moved to the location below. Please -// update your includes! See: http://bugs.webrtc.org/6716 -#include "webrtc/call/call.h"