| Index: Source/platform/exported/WebScrollbarImpl.h
|
| diff --git a/Source/platform/exported/WebScrollbarImpl.h b/Source/platform/exported/WebScrollbarImpl.h
|
| index 97a8cadffcd267487610e8042b0225ec698f959e..aa07b4e3ee206fbcc52d527d3be854a629f88237 100644
|
| --- a/Source/platform/exported/WebScrollbarImpl.h
|
| +++ b/Source/platform/exported/WebScrollbarImpl.h
|
| @@ -29,16 +29,13 @@
|
| #include "public/platform/WebScrollbar.h"
|
|
|
| namespace blink {
|
| -class Scrollbar;
|
| -}
|
| -
|
| -namespace blink {
|
|
|
| +class Scrollbar;
|
| class PLATFORM_EXPORT WebScrollbarImpl : public WebScrollbar {
|
| public:
|
| - explicit WebScrollbarImpl(blink::Scrollbar*);
|
| + explicit WebScrollbarImpl(Scrollbar*);
|
|
|
| - // Implement blink::WebScrollbar methods
|
| + // Implement WebScrollbar methods
|
| virtual bool isOverlay() const OVERRIDE;
|
| virtual int value() const OVERRIDE;
|
| virtual WebPoint location() const OVERRIDE;
|
| @@ -60,7 +57,7 @@ public:
|
| virtual void setIsAlphaLocked(bool) OVERRIDE;
|
|
|
| private:
|
| - RefPtr<blink::Scrollbar> m_scrollbar;
|
| + RefPtr<Scrollbar> m_scrollbar;
|
| };
|
|
|
| } // namespace blink
|
|
|