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

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

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ Created 6 years, 4 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
« no previous file with comments | « Source/platform/exported/WebScrollbarImpl.h ('k') | Source/platform/exported/WebScrollbarThemeClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebScrollbarImpl.cpp
diff --git a/Source/platform/exported/WebScrollbarImpl.cpp b/Source/platform/exported/WebScrollbarImpl.cpp
index 8abba62d084aa47e98645da63768178c7983d520..852f53d0683e0beff5256f84367e25605aae2b0d 100644
--- a/Source/platform/exported/WebScrollbarImpl.cpp
+++ b/Source/platform/exported/WebScrollbarImpl.cpp
@@ -31,7 +31,7 @@
namespace blink {
-WebScrollbarImpl::WebScrollbarImpl(blink::Scrollbar* scrollbar)
+WebScrollbarImpl::WebScrollbarImpl(Scrollbar* scrollbar)
: m_scrollbar(scrollbar)
{
}
@@ -83,7 +83,7 @@ bool WebScrollbarImpl::isScrollableAreaActive() const
void WebScrollbarImpl::getTickmarks(WebVector<WebRect>& webTickmarks) const
{
- Vector<blink::IntRect> tickmarks;
+ Vector<IntRect> tickmarks;
m_scrollbar->getTickmarks(tickmarks);
WebVector<WebRect> result(tickmarks.size());
« no previous file with comments | « Source/platform/exported/WebScrollbarImpl.h ('k') | Source/platform/exported/WebScrollbarThemeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698