Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / scroll / ScrollbarThemeClient.h
index b45647a..5ebad94 100644 (file)
@@ -26,6 +26,7 @@
 #ifndef ScrollbarThemeClient_h
 #define ScrollbarThemeClient_h
 
+#include "platform/PlatformExport.h"
 #include "platform/geometry/IntPoint.h"
 #include "platform/geometry/IntRect.h"
 #include "platform/geometry/IntSize.h"
 #include "wtf/PassOwnPtr.h"
 #include "wtf/Vector.h"
 
-namespace WebCore {
+namespace blink {
 
 class Widget;
 
-class ScrollbarThemeClient {
+class PLATFORM_EXPORT ScrollbarThemeClient {
 public:
     virtual int x() const = 0;
     virtual int y() const = 0;
@@ -58,7 +59,6 @@ public:
     virtual ScrollbarOverlayStyle scrollbarOverlayStyle() const = 0;
     virtual void getTickmarks(Vector<IntRect>&) const = 0;
     virtual bool isScrollableAreaActive() const = 0;
-    virtual bool isScrollViewScrollbar() const = 0;
 
     virtual IntPoint convertFromContainingWindow(const IntPoint& windowPoint) = 0;
 
@@ -90,6 +90,6 @@ protected:
     virtual ~ScrollbarThemeClient() { }
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // ScollbarThemeClient_h