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

Unified Diff: webkit/renderer/compositor_bindings/web_layer_impl.cc

Issue 16155009: Update webkit/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/plugins/ppapi/url_request_info_util.cc ('k') | webkit/renderer/media/buffered_data_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/renderer/compositor_bindings/web_layer_impl.cc
diff --git a/webkit/renderer/compositor_bindings/web_layer_impl.cc b/webkit/renderer/compositor_bindings/web_layer_impl.cc
index bd251b5544bbc7af4b740411c8b95562a92d5926..ddac35cd7d8e92d6851197530a6f4dea36f32b1b 100644
--- a/webkit/renderer/compositor_bindings/web_layer_impl.cc
+++ b/webkit/renderer/compositor_bindings/web_layer_impl.cc
@@ -213,7 +213,7 @@ bool WebLayerImpl::hasActiveAnimation() { return layer_->HasActiveAnimation(); }
void WebLayerImpl::transferAnimationsTo(WebLayer* other) {
DCHECK(other);
- layer_->TransferAnimationsTo(static_cast<WebLayerImpl*>(other)->layer_);
+ layer_->TransferAnimationsTo(static_cast<WebLayerImpl*>(other)->layer_.get());
}
void WebLayerImpl::setForceRenderSurface(bool force_render_surface) {
« no previous file with comments | « webkit/plugins/ppapi/url_request_info_util.cc ('k') | webkit/renderer/media/buffered_data_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698