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

Unified Diff: webkit/compositor_bindings/WebIOSurfaceLayerImpl.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/WebIOSurfaceLayerImpl.cpp
diff --git a/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp b/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp
index 0d9f5d649a59d3b608360575441654dedf04cebf..8fec413a68543b710cdfcd20b996b1d093d44f30 100644
--- a/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp
+++ b/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp
@@ -9,7 +9,7 @@
#include "cc/io_surface_layer.h"
#include "webcore_convert.h"
-using cc::IOSurfaceLayerChromium;
+using cc::IOSurfaceLayer;
namespace WebKit {
@@ -19,7 +19,7 @@ WebIOSurfaceLayer* WebIOSurfaceLayer::create()
}
WebIOSurfaceLayerImpl::WebIOSurfaceLayerImpl()
- : m_layer(new WebLayerImpl(IOSurfaceLayerChromium::create()))
+ : m_layer(new WebLayerImpl(IOSurfaceLayer::create()))
{
m_layer->layer()->setIsDrawable(true);
}
@@ -30,7 +30,7 @@ WebIOSurfaceLayerImpl::~WebIOSurfaceLayerImpl()
void WebIOSurfaceLayerImpl::setIOSurfaceProperties(unsigned ioSurfaceId, WebSize size)
{
- static_cast<IOSurfaceLayerChromium*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, convert(size));
+ static_cast<IOSurfaceLayer*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, convert(size));
}
WebLayer* WebIOSurfaceLayerImpl::layer()

Powered by Google App Engine
This is Rietveld 408576698