Chromium Code Reviews| Index: Source/platform/exported/WebScrollbarImpl.h |
| diff --git a/Source/platform/exported/WebScrollbarImpl.h b/Source/platform/exported/WebScrollbarImpl.h |
| index 97a8cadffcd267487610e8042b0225ec698f959e..e5ff8a34ca398672404b8f44213bd9b3d26e8631 100644 |
| --- a/Source/platform/exported/WebScrollbarImpl.h |
| +++ b/Source/platform/exported/WebScrollbarImpl.h |
| @@ -29,14 +29,11 @@ |
| #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 |
|
kangil_
2014/08/12 08:20:32
s/blink::WebScrollbar/WebScrollbar
heeyoun.lee
2014/08/12 08:34:53
Done.
|
| virtual bool isOverlay() const OVERRIDE; |
| @@ -60,7 +57,7 @@ public: |
| virtual void setIsAlphaLocked(bool) OVERRIDE; |
| private: |
| - RefPtr<blink::Scrollbar> m_scrollbar; |
| + RefPtr<Scrollbar> m_scrollbar; |
| }; |
| } // namespace blink |