X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2Fpublic%2Fplatform%2FWebScrollbarThemePainter.h;h=48d1169e3ff4c1bad180e431229a9cf22463b7c8;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=1417c0b4f343b7235e1fbfb282e21111f9917191;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/public/platform/WebScrollbarThemePainter.h b/src/third_party/WebKit/public/platform/WebScrollbarThemePainter.h index 1417c0b..48d1169 100644 --- a/src/third_party/WebKit/public/platform/WebScrollbarThemePainter.h +++ b/src/third_party/WebKit/public/platform/WebScrollbarThemePainter.h @@ -28,13 +28,10 @@ #include "WebCanvas.h" -namespace WebCore { -class ScrollbarTheme; -class Scrollbar; -}; - namespace blink { +class ScrollbarTheme; +class Scrollbar; class WebScrollbar; struct WebRect; @@ -63,7 +60,7 @@ public: BLINK_EXPORT void paintThumb(WebCanvas*, const WebRect&); #if BLINK_IMPLEMENTATION - WebScrollbarThemePainter(WebCore::ScrollbarTheme*, WebCore::Scrollbar*); + WebScrollbarThemePainter(ScrollbarTheme*, Scrollbar*); #endif private: @@ -71,13 +68,13 @@ private: // static pointer and its lifetime is essentially infinite. The functions // called from the painter may not be thread-safe, so all calls must be made // from the same thread that it is created on. - WebCore::ScrollbarTheme* m_theme; + ScrollbarTheme* m_theme; // It is assumed that the constructor of this paint object is responsible // for the lifetime of this scrollbar. The painter has to use the real // scrollbar (and not a WebScrollbar wrapper) due to static_casts for // RenderScrollbar and pointer-based HashMap lookups for Lion scrollbars. - WebCore::Scrollbar* m_scrollbar; + Scrollbar* m_scrollbar; }; } // namespace blink