From 659a0101f618ccaaaf4321d53c8ccb950bdfef72 Mon Sep 17 00:00:00 2001 From: nisse Date: Tue, 13 Jun 2017 06:05:05 -0700 Subject: [PATCH] Delete old include file webrtc/video_frame.h. BUG=webrtc:7616, webrtc:5880 Review-Url: https://codereview.webrtc.org/2913143002 Cr-Commit-Position: refs/heads/master@{#18565} --- webrtc/BUILD.gn | 14 -------------- webrtc/DEPS | 3 --- webrtc/video_frame.h | 19 ------------------- 3 files changed, 36 deletions(-) delete mode 100644 webrtc/video_frame.h diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn index 2781a97195..fe6a0d432f 100644 --- a/webrtc/BUILD.gn +++ b/webrtc/BUILD.gn @@ -237,20 +237,6 @@ rtc_source_set("video_stream_api") { ] } -# Contents of video_frame.h is moved from top-level down to common_video/. -# Nothing in webrtc includes the backwards-compatibility header, so this target -# is only for completeness. -# TODO(nisse): Delete together with the header file once downstream applications -# no longer use it. -rtc_source_set("video_frame_deprecated") { - sources = [ - "video_frame.h", - ] - deps = [ - "common_video", - ] -} - if (!build_with_chromium) { # Target to build all the WebRTC production code. rtc_static_library("webrtc") { diff --git a/webrtc/DEPS b/webrtc/DEPS index ba1c918951..0a9ade9991 100644 --- a/webrtc/DEPS +++ b/webrtc/DEPS @@ -27,9 +27,6 @@ include_rules = [ # The below rules will be removed when webrtc:4243 is fixed. specific_include_rules = { - "video_frame\.h": [ - "+webrtc/common_video", - ], "video_receive_stream\.h": [ "+webrtc/common_video/include", "+webrtc/media/base", diff --git a/webrtc/video_frame.h b/webrtc/video_frame.h deleted file mode 100644 index 76975e8d1b..0000000000 --- a/webrtc/video_frame.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (c) 2014 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_VIDEO_FRAME_H_ -#define WEBRTC_VIDEO_FRAME_H_ - -// TODO(nisse): Delete this wrapper file, as soon as downstream -// projects are updated. - -#include "webrtc/common_video/include/video_frame.h" - -#endif // WEBRTC_VIDEO_FRAME_H_