Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1555)

Unified Diff: Source/platform/exported/WebScrollbarThemeClientImpl.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/platform/exported/WebScrollbarThemeClientImpl.cpp
diff --git a/Source/platform/exported/WebScrollbarThemeClientImpl.cpp b/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
index 267236a197270692072de38191c43ac3e31aed6b..35c976ee537a3835ae64b212d39c485d52d302e6 100644
--- a/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
+++ b/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
@@ -31,7 +31,7 @@
using blink::WebScrollbar;
-namespace WebCore {
+namespace blink {
WebScrollbarThemeClientImpl::WebScrollbarThemeClientImpl(WebScrollbar* scrollbar)
: m_scrollbar(scrollbar)
@@ -111,9 +111,9 @@ void WebScrollbarThemeClientImpl::invalidateRect(const IntRect&)
ASSERT_NOT_REACHED();
}
-WebCore::ScrollbarOverlayStyle WebScrollbarThemeClientImpl::scrollbarOverlayStyle() const
+blink::ScrollbarOverlayStyle WebScrollbarThemeClientImpl::scrollbarOverlayStyle() const
{
- return static_cast<WebCore::ScrollbarOverlayStyle>(m_scrollbar->scrollbarOverlayStyle());
+ return static_cast<blink::ScrollbarOverlayStyle>(m_scrollbar->scrollbarOverlayStyle());
}
void WebScrollbarThemeClientImpl::getTickmarks(Vector<IntRect>& tickmarks) const
@@ -149,9 +149,9 @@ bool WebScrollbarThemeClientImpl::isCustomScrollbar() const
return m_scrollbar->isCustomScrollbar();
}
-WebCore::ScrollbarOrientation WebScrollbarThemeClientImpl::orientation() const
+blink::ScrollbarOrientation WebScrollbarThemeClientImpl::orientation() const
{
- return static_cast<WebCore::ScrollbarOrientation>(m_scrollbar->orientation());
+ return static_cast<blink::ScrollbarOrientation>(m_scrollbar->orientation());
}
bool WebScrollbarThemeClientImpl::isLeftSideVerticalScrollbar() const
@@ -184,19 +184,19 @@ int WebScrollbarThemeClientImpl::maximum() const
return m_scrollbar->maximum();
}
-WebCore::ScrollbarControlSize WebScrollbarThemeClientImpl::controlSize() const
+blink::ScrollbarControlSize WebScrollbarThemeClientImpl::controlSize() const
{
- return static_cast<WebCore::ScrollbarControlSize>(m_scrollbar->controlSize());
+ return static_cast<blink::ScrollbarControlSize>(m_scrollbar->controlSize());
}
-WebCore::ScrollbarPart WebScrollbarThemeClientImpl::pressedPart() const
+blink::ScrollbarPart WebScrollbarThemeClientImpl::pressedPart() const
{
- return static_cast<WebCore::ScrollbarPart>(m_scrollbar->pressedPart());
+ return static_cast<blink::ScrollbarPart>(m_scrollbar->pressedPart());
}
-WebCore::ScrollbarPart WebScrollbarThemeClientImpl::hoveredPart() const
+blink::ScrollbarPart WebScrollbarThemeClientImpl::hoveredPart() const
{
- return static_cast<WebCore::ScrollbarPart>(m_scrollbar->hoveredPart());
+ return static_cast<blink::ScrollbarPart>(m_scrollbar->hoveredPart());
}
void WebScrollbarThemeClientImpl::styleChanged()
« no previous file with comments | « Source/platform/exported/WebScrollbarThemeClientImpl.h ('k') | Source/platform/exported/WebScrollbarThemeGeometryNative.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698