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

Unified Diff: webkit/compositor_bindings/WebScrollbarLayerImpl.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/WebScrollbarLayerImpl.cpp
diff --git a/webkit/compositor_bindings/WebScrollbarLayerImpl.cpp b/webkit/compositor_bindings/WebScrollbarLayerImpl.cpp
index ee5b4c7bfc13c6c7245ce606998cc211ed0560e8..0b7dbc38f73da3b3f626e5867cd3693d5996e033 100644
--- a/webkit/compositor_bindings/WebScrollbarLayerImpl.cpp
+++ b/webkit/compositor_bindings/WebScrollbarLayerImpl.cpp
@@ -8,7 +8,7 @@
#include "WebLayerImpl.h"
#include "cc/scrollbar_layer.h"
-using cc::ScrollbarLayerChromium;
+using cc::ScrollbarLayer;
namespace WebKit {
@@ -19,7 +19,7 @@ WebScrollbarLayer* WebScrollbarLayer::create(WebScrollbar* scrollbar, WebScrollb
WebScrollbarLayerImpl::WebScrollbarLayerImpl(WebScrollbar* scrollbar, WebScrollbarThemePainter painter, WebScrollbarThemeGeometry* geometry)
- : m_layer(new WebLayerImpl(ScrollbarLayerChromium::create(make_scoped_ptr(scrollbar), painter, make_scoped_ptr(geometry), 0)))
+ : m_layer(new WebLayerImpl(ScrollbarLayer::create(make_scoped_ptr(scrollbar), painter, make_scoped_ptr(geometry), 0)))
{
}
@@ -35,7 +35,7 @@ WebLayer* WebScrollbarLayerImpl::layer()
void WebScrollbarLayerImpl::setScrollLayer(WebLayer* layer)
{
int id = layer ? static_cast<WebLayerImpl*>(layer)->layer()->id() : 0;
- static_cast<ScrollbarLayerChromium*>(m_layer->layer())->setScrollLayerId(id);
+ static_cast<ScrollbarLayer*>(m_layer->layer())->setScrollLayerId(id);
}

Powered by Google App Engine
This is Rietveld 408576698