From 96baf3e81b1df4b0836d70c3cded9795e63fa789 Mon Sep 17 00:00:00 2001 From: "enne@chromium.org" Date: Mon, 22 Oct 2012 23:09:55 +0000 Subject: cc: Rename cc classes and members to match filenames Fixed reland of https://chromiumcodereview.appspot.com/11189043/ TBR=jam@chromium.org,jamesr@chromium.org BUG=155413 Review URL: https://codereview.chromium.org/11231054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163429 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/scrollbar_geometry_fixed_thumb.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cc/scrollbar_geometry_fixed_thumb.h') diff --git a/cc/scrollbar_geometry_fixed_thumb.h b/cc/scrollbar_geometry_fixed_thumb.h index 1ae2db8..ecec1d8 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 create(scoped_ptr); - virtual ~CCScrollbarGeometryFixedThumb(); + static scoped_ptr create(scoped_ptr); + 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); + explicit ScrollbarGeometryFixedThumb(scoped_ptr); IntSize m_thumbSize; }; -- cgit v1.1