Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / exported / WebScrollbarThemeClientImpl.h
index 802d460..8c4fb1d 100644 (file)
@@ -31,7 +31,7 @@
 #include "public/platform/WebScrollbar.h"
 #include "wtf/Noncopyable.h"
 
-namespace WebCore {
+namespace blink {
 class ScrollView;
 
 // Adapts a WebScrollbar to the ScrollbarThemeClient interface
@@ -40,7 +40,7 @@ class PLATFORM_EXPORT WebScrollbarThemeClientImpl : public ScrollbarThemeClient
 public:
     // Caller must retain ownership of this pointer and ensure that its lifetime
     // exceeds this instance.
-    WebScrollbarThemeClientImpl(blink::WebScrollbar*);
+    WebScrollbarThemeClientImpl(WebScrollbar*);
     virtual ~WebScrollbarThemeClientImpl();
 
     // Implement ScrollbarThemeClient interface
@@ -80,9 +80,9 @@ public:
     virtual void setIsAlphaLocked(bool) OVERRIDE;
 
 private:
-    blink::WebScrollbar* m_scrollbar;
+    WebScrollbar* m_scrollbar;
 };
 
-}
+} // namespace blink
 
 #endif // WebScrollbarThemeClientImpl_h