| Index: cc/scrollbar_geometry_fixed_thumb.h
|
| diff --git a/cc/scrollbar_geometry_fixed_thumb.h b/cc/scrollbar_geometry_fixed_thumb.h
|
| index 64e3c22423fdd81dab6228d384e94e4aaca31a81..c74fc6d578d0bb5f99381cea97ac203208fa05de 100644
|
| --- a/cc/scrollbar_geometry_fixed_thumb.h
|
| +++ b/cc/scrollbar_geometry_fixed_thumb.h
|
| @@ -14,10 +14,10 @@ namespace cc {
|
| // it always returns a fixed thumb length. This allows a page to zoom (changing
|
| // the total size of the scrollable area, changing the thumb length) while not
|
| // requiring the thumb resource to be repainted.
|
| -class CCScrollbarGeometryFixedThumb : public CCScrollbarGeometryStub {
|
| +class ScrollbarGeometryFixedThumb : public ScrollbarGeometryStub {
|
| public:
|
| - static scoped_ptr<CCScrollbarGeometryFixedThumb> create(scoped_ptr<WebKit::WebScrollbarThemeGeometry>);
|
| - virtual ~CCScrollbarGeometryFixedThumb();
|
| + static scoped_ptr<ScrollbarGeometryFixedThumb> create(scoped_ptr<WebKit::WebScrollbarThemeGeometry>);
|
| + virtual ~ScrollbarGeometryFixedThumb();
|
|
|
| // Update thumb length from scrollbar
|
| void update(WebKit::WebScrollbar*);
|
| @@ -29,7 +29,7 @@ public:
|
| virtual void splitTrack(WebKit::WebScrollbar*, const WebKit::WebRect& track, WebKit::WebRect& startTrack, WebKit::WebRect& thumb, WebKit::WebRect& endTrack) OVERRIDE;
|
|
|
| private:
|
| - explicit CCScrollbarGeometryFixedThumb(scoped_ptr<WebKit::WebScrollbarThemeGeometry>);
|
| + explicit ScrollbarGeometryFixedThumb(scoped_ptr<WebKit::WebScrollbarThemeGeometry>);
|
|
|
| IntSize m_thumbSize;
|
| };
|
|
|