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

Unified Diff: webkit/compositor_bindings/web_video_layer_impl.cc

Issue 12774006: cc: Chromify Layer and LayerImpl classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MoreAndroidCompilings 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 | « webkit/compositor_bindings/web_solid_color_layer_impl.cc ('k') | webkit/plugins/npapi/webplugin_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/web_video_layer_impl.cc
diff --git a/webkit/compositor_bindings/web_video_layer_impl.cc b/webkit/compositor_bindings/web_video_layer_impl.cc
index dcb4b71444b1eb4665afc279d3b5217f160557e9..e968bede0da572f14284cbc50a0526067d37c92f 100644
--- a/webkit/compositor_bindings/web_video_layer_impl.cc
+++ b/webkit/compositor_bindings/web_video_layer_impl.cc
@@ -16,14 +16,14 @@ WebVideoLayerImpl::WebVideoLayerImpl(WebVideoFrameProvider* web_provider)
: provider_adapter_(
webkit::WebToCCVideoFrameProvider::Create(web_provider)),
layer_(
- new WebLayerImpl(cc::VideoLayer::create(provider_adapter_.get()))) {}
+ new WebLayerImpl(cc::VideoLayer::Create(provider_adapter_.get()))) {}
WebVideoLayerImpl::~WebVideoLayerImpl() {}
WebLayer* WebVideoLayerImpl::layer() { return layer_.get(); }
bool WebVideoLayerImpl::active() const {
- return layer_->layer()->layerTreeHost();
+ return layer_->layer()->layer_tree_host();
}
} // namespace WebKit
« no previous file with comments | « webkit/compositor_bindings/web_solid_color_layer_impl.cc ('k') | webkit/plugins/npapi/webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698