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

Unified Diff: cc/scrollbar_geometry_stub.h

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: cc/scrollbar_geometry_stub.h
diff --git a/cc/scrollbar_geometry_stub.h b/cc/scrollbar_geometry_stub.h
index 0ed0d65618c821a5f6ff6ed739b95a38b5888ef8..ed47eefb246acc49b38906c31cad23a114b94282 100644
--- a/cc/scrollbar_geometry_stub.h
+++ b/cc/scrollbar_geometry_stub.h
@@ -13,9 +13,9 @@ namespace cc {
// This subclass wraps an existing scrollbar geometry class so that
// another class can derive from it and override specific functions, while
// passing through the remaining ones.
-class CCScrollbarGeometryStub : public WebKit::WebScrollbarThemeGeometry {
+class ScrollbarGeometryStub : public WebKit::WebScrollbarThemeGeometry {
public:
- virtual ~CCScrollbarGeometryStub();
+ virtual ~ScrollbarGeometryStub();
// Allow derived classes to update themselves from a scrollbar.
void update(WebKit::WebScrollbar*) { }
@@ -40,7 +40,7 @@ public:
virtual void splitTrack(WebKit::WebScrollbar*, const WebKit::WebRect& track, WebKit::WebRect& startTrack, WebKit::WebRect& thumb, WebKit::WebRect& endTrack) OVERRIDE;
protected:
- explicit CCScrollbarGeometryStub(scoped_ptr<WebKit::WebScrollbarThemeGeometry>);
+ explicit ScrollbarGeometryStub(scoped_ptr<WebKit::WebScrollbarThemeGeometry>);
private:
scoped_ptr<WebKit::WebScrollbarThemeGeometry> m_geometry;

Powered by Google App Engine
This is Rietveld 408576698