Index: cc/input/pinch_zoom_scrollbar_geometry.h |
diff --git a/cc/input/pinch_zoom_scrollbar_geometry.h b/cc/input/pinch_zoom_scrollbar_geometry.h |
index b2795b1adabc64d9508e005a256b7c6939cd7c4c..d3c0aca8433bb6e9305c3869964fd77381ae7581 100644 |
--- a/cc/input/pinch_zoom_scrollbar_geometry.h |
+++ b/cc/input/pinch_zoom_scrollbar_geometry.h |
@@ -5,6 +5,7 @@ |
#ifndef CC_INPUT_PINCH_ZOOM_SCROLLBAR_GEOMETRY_H_ |
#define CC_INPUT_PINCH_ZOOM_SCROLLBAR_GEOMETRY_H_ |
+#include "base/basictypes.h" |
#include "cc/base/cc_export.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebScrollbarThemeGeometry.h" |
@@ -16,6 +17,7 @@ namespace cc { |
class PinchZoomScrollbarGeometry : public WebScrollbarThemeGeometry { |
public: |
+ PinchZoomScrollbarGeometry() {} |
virtual ~PinchZoomScrollbarGeometry() {} |
static const int kTrackWidth; |
@@ -43,6 +45,9 @@ class PinchZoomScrollbarGeometry : public WebScrollbarThemeGeometry { |
virtual void splitTrack( |
WebScrollbar* scrollbar, const WebRect& track, WebRect& start_track, |
WebRect& thumb, WebRect& end_track); |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(PinchZoomScrollbarGeometry); |
}; |
} // namespace WebKit |