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

Unified Diff: Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/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

Powered by Google App Engine
This is Rietveld 408576698