From 6f8ce060a21fcdc1c951fbf06768eb0cc0083b2f Mon Sep 17 00:00:00 2001 From: kjellander Date: Mon, 16 Nov 2015 13:52:24 -0800 Subject: common_video: rename interface -> include To avoid breaking downstream, the "interface" directories were copied into a new "common_video/include" dir. The old headers got pragma warnings added about deprecation (a very short deprecation since I plan to remove them as soon downstream is updated). The header guards are also identical to avoid mixing them up in the transition. BUG=webrtc:5095 TESTED=Passing compile-trybots with --clobber flag: git cl try --clobber --bot=win_compile_rel --bot=linux_compile_rel --bot=android_compile_rel --bot=mac_compile_rel --bot=ios_rel --bot=linux_gn_rel --bot=win_x64_gn_rel --bot=mac_x64_gn_rel --bot=android_gn_rel -m tryserver.webrtc Review URL: https://codereview.webrtc.org/1418913006 Cr-Commit-Position: refs/heads/master@{#10659} --- webrtc/common_video/include/video_image.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 webrtc/common_video/include/video_image.h (limited to 'webrtc/common_video/include/video_image.h') diff --git a/webrtc/common_video/include/video_image.h b/webrtc/common_video/include/video_image.h new file mode 100644 index 0000000000..4a6e451c0f --- /dev/null +++ b/webrtc/common_video/include/video_image.h @@ -0,0 +1,17 @@ +/* + * 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. + */ + +#ifndef WEBRTC_COMMON_VIDEO_INCLUDE_VIDEO_IMAGE_H_ +#define WEBRTC_COMMON_VIDEO_INCLUDE_VIDEO_IMAGE_H_ + +// TODO(pbos): Remove this file and include webrtc/video_frame.h instead. +#include "webrtc/video_frame.h" + +#endif // WEBRTC_COMMON_VIDEO_INCLUDE_VIDEO_IMAGE_H_ -- cgit v1.2.3