| Index: Source/web/WebPluginScrollbarImpl.h
|
| diff --git a/Source/web/WebPluginScrollbarImpl.h b/Source/web/WebPluginScrollbarImpl.h
|
| index 75ea881ddc690b8f1d3058286e2467e4e0302e50..6c6da990165695ffc4b1dcf9d8a5b691c17d2e34 100644
|
| --- a/Source/web/WebPluginScrollbarImpl.h
|
| +++ b/Source/web/WebPluginScrollbarImpl.h
|
| @@ -31,13 +31,10 @@
|
| #include "wtf/Vector.h"
|
|
|
| namespace blink {
|
| +
|
| class IntPoint;
|
| class IntRect;
|
| class Scrollbar;
|
| -}
|
| -
|
| -namespace blink {
|
| -
|
| class ScrollbarGroup;
|
|
|
| class WebPluginScrollbarImpl FINAL : public WebPluginScrollbar {
|
| @@ -46,16 +43,16 @@ public:
|
| virtual ~WebPluginScrollbarImpl();
|
|
|
| void setScrollOffset(int);
|
| - void invalidateScrollbarRect(const blink::IntRect&);
|
| + void invalidateScrollbarRect(const IntRect&);
|
| // FIXME: Combine this with the other getTickmarks method
|
| - void getTickmarks(Vector<blink::IntRect>&) const;
|
| - blink::IntPoint convertFromContainingViewToScrollbar(const blink::IntPoint& parentPoint) const;
|
| + void getTickmarks(Vector<IntRect>&) const;
|
| + IntPoint convertFromContainingViewToScrollbar(const IntPoint& parentPoint) const;
|
| void scrollbarStyleChanged();
|
|
|
| int scrollOffset() { return m_scrollOffset; }
|
| - blink::Scrollbar* scrollbar() { return m_scrollbar.get(); }
|
| + Scrollbar* scrollbar() { return m_scrollbar.get(); }
|
|
|
| - // blink::WebScrollbar methods
|
| + // WebScrollbar methods
|
| virtual bool isOverlay() const OVERRIDE;
|
| virtual int value() const OVERRIDE;
|
| virtual WebPoint location() const OVERRIDE;
|
| @@ -74,7 +71,7 @@ public:
|
| virtual bool isLeftSideVerticalScrollbar() const OVERRIDE;
|
| virtual bool isCustomScrollbar() const OVERRIDE;
|
|
|
| - // blink::WebPluginScrollbar methods
|
| + // WebPluginScrollbar methods
|
| virtual void setLocation(const WebRect&) OVERRIDE;
|
| virtual void setValue(int position) OVERRIDE;
|
| virtual void setDocumentSize(int) OVERRIDE;
|
| @@ -96,7 +93,7 @@ private:
|
| WebPluginScrollbarClient* m_client;
|
|
|
| int m_scrollOffset;
|
| - RefPtr<blink::Scrollbar> m_scrollbar;
|
| + RefPtr<Scrollbar> m_scrollbar;
|
| };
|
|
|
| } // namespace blink
|
|
|