Index: webkit/compositor/WebScrollbarLayerImpl.h |
diff --git a/webkit/compositor/WebScrollbarLayerImpl.h b/webkit/compositor/WebScrollbarLayerImpl.h |
deleted file mode 100644 |
index d4a33a10e64700d1ab996f3931dd71dc9d09c476..0000000000000000000000000000000000000000 |
--- a/webkit/compositor/WebScrollbarLayerImpl.h |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-// Copyright 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef WebScrollbarLayerImpl_h |
-#define WebScrollbarLayerImpl_h |
- |
-#include <public/WebScrollbarLayer.h> |
-#include <wtf/OwnPtr.h> |
- |
-namespace WebKit { |
-class WebLayerImpl; |
- |
-class WebScrollbarLayerImpl : public WebScrollbarLayer { |
-public: |
- WebScrollbarLayerImpl(WebScrollbar*, WebScrollbarThemePainter, WebScrollbarThemeGeometry*); |
- virtual ~WebScrollbarLayerImpl(); |
- |
- // WebScrollbarLayer implementation. |
- virtual WebLayer* layer() OVERRIDE; |
- virtual void setScrollLayer(WebLayer*) OVERRIDE; |
- |
-private: |
- OwnPtr<WebLayerImpl> m_layer; |
-}; |
- |
-} |
- |
-#endif // WebScrollbarLayerImpl_h |