Index: Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp |
diff --git a/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp b/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp |
index 333a5646dfe3c5ea30940b8ba8f5e2ff4d6117b0..f75ebe260fb5cfc83a54b256c480c3f3def6d901 100644 |
--- a/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp |
+++ b/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp |
@@ -28,7 +28,7 @@ |
#include "core/platform/chromium/support/WebScrollbarThemeClientImpl.h" |
#include "core/platform/ScrollbarTheme.h" |
-using WebKit::WebScrollbar; |
+using blink::WebScrollbar; |
namespace WebCore { |
@@ -117,7 +117,7 @@ WebCore::ScrollbarOverlayStyle WebScrollbarThemeClientImpl::scrollbarOverlayStyl |
void WebScrollbarThemeClientImpl::getTickmarks(Vector<IntRect>& tickmarks) const |
{ |
- WebKit::WebVector<WebKit::WebRect> webTickmarks; |
+ blink::WebVector<blink::WebRect> webTickmarks; |
m_scrollbar->getTickmarks(webTickmarks); |
tickmarks.resize(webTickmarks.size()); |
for (size_t i = 0; i < webTickmarks.size(); ++i) |
@@ -228,4 +228,4 @@ void WebScrollbarThemeClientImpl::setIsAlphaLocked(bool flag) |
m_scrollbar->setIsAlphaLocked(flag); |
} |
-} // namespace WebKit |
+} // namespace blink |