Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1665)

Unified Diff: webkit/media/webvideoframe_impl.h

Issue 12902002: Remove WebVideoFrame, WebVideoFrameProvider, and WebVideoLayer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/media/webvideoframe_impl.h
diff --git a/webkit/media/webvideoframe_impl.h b/webkit/media/webvideoframe_impl.h
deleted file mode 100644
index 4680b5c8fe7929f4ed9e334f5bba755a74d95f13..0000000000000000000000000000000000000000
--- a/webkit/media/webvideoframe_impl.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_MEDIA_WEBVIDEOFRAME_IMPL_H_
-#define WEBKIT_MEDIA_WEBVIDEOFRAME_IMPL_H_
-
-#include "base/compiler_specific.h"
-#include "base/memory/ref_counted.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebVideoFrame.h"
-
-namespace media {
-class VideoFrame;
-}
-
-namespace webkit_media {
-
-class WebVideoFrameImpl : public WebKit::WebVideoFrame {
- public:
- WebVideoFrameImpl(scoped_refptr<media::VideoFrame> video_frame);
- virtual ~WebVideoFrameImpl();
-
- scoped_refptr<media::VideoFrame> video_frame;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(WebVideoFrameImpl);
-};
-
-} // namespace webkit_media
-
-#endif // WEBKIT_MEDIA_WEBVIDEOFRAME_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698