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

Unified Diff: cc/video_layer.cc

Issue 12603013: Part 10 of cc/ directory shuffles: layers (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
« no previous file with comments | « cc/video_layer.h ('k') | cc/video_layer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/video_layer.cc
diff --git a/cc/video_layer.cc b/cc/video_layer.cc
deleted file mode 100644
index 06daf763ebe446083136fd26231445e5bceb547c..0000000000000000000000000000000000000000
--- a/cc/video_layer.cc
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2010 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.
-
-#include "cc/video_layer.h"
-
-#include "cc/video_layer_impl.h"
-
-namespace cc {
-
-scoped_refptr<VideoLayer> VideoLayer::Create(VideoFrameProvider* provider) {
- return make_scoped_refptr(new VideoLayer(provider));
-}
-
-VideoLayer::VideoLayer(VideoFrameProvider* provider) : provider_(provider) {
- DCHECK(provider_);
-}
-
-VideoLayer::~VideoLayer() {}
-
-scoped_ptr<LayerImpl> VideoLayer::CreateLayerImpl(LayerTreeImpl* tree_impl) {
- return VideoLayerImpl::Create(tree_impl, id(), provider_).PassAs<LayerImpl>();
-}
-
-} // namespace cc
« no previous file with comments | « cc/video_layer.h ('k') | cc/video_layer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698