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

Unified Diff: webkit/compositor_bindings/WebContentLayerImpl.cpp

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/compositor_bindings/WebContentLayerImpl.cpp
diff --git a/webkit/compositor_bindings/WebContentLayerImpl.cpp b/webkit/compositor_bindings/WebContentLayerImpl.cpp
index 1f074160654f84d0b9caa2785a22fe568b7bc21b..76e51564363489a9748dbae1228548e6926a031d 100644
--- a/webkit/compositor_bindings/WebContentLayerImpl.cpp
+++ b/webkit/compositor_bindings/WebContentLayerImpl.cpp
@@ -26,7 +26,7 @@ WebContentLayer* WebContentLayer::create(WebContentLayerClient* client)
}
WebContentLayerImpl::WebContentLayerImpl(WebContentLayerClient* client)
- : m_layer(new WebLayerImpl(ContentLayerChromium::create(this)))
+ : m_layer(new WebLayerImpl(ContentLayer::create(this)))
, m_client(client)
{
m_layer->layer()->setIsDrawable(true);
@@ -34,7 +34,7 @@ WebContentLayerImpl::WebContentLayerImpl(WebContentLayerClient* client)
WebContentLayerImpl::~WebContentLayerImpl()
{
- static_cast<ContentLayerChromium*>(m_layer->layer())->clearClient();
+ static_cast<ContentLayer*>(m_layer->layer())->clearClient();
}
WebLayer* WebContentLayerImpl::layer()

Powered by Google App Engine
This is Rietveld 408576698