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

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

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/WebSchedulerProxy.cpp ('k') | Source/platform/exported/WebScrollbarImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebScrollbarImpl.h
diff --git a/Source/platform/exported/WebScrollbarImpl.h b/Source/platform/exported/WebScrollbarImpl.h
index 97a8cadffcd267487610e8042b0225ec698f959e..aa07b4e3ee206fbcc52d527d3be854a629f88237 100644
--- a/Source/platform/exported/WebScrollbarImpl.h
+++ b/Source/platform/exported/WebScrollbarImpl.h
@@ -29,16 +29,13 @@
#include "public/platform/WebScrollbar.h"
namespace blink {
-class Scrollbar;
-}
-
-namespace blink {
+class Scrollbar;
class PLATFORM_EXPORT WebScrollbarImpl : public WebScrollbar {
public:
- explicit WebScrollbarImpl(blink::Scrollbar*);
+ explicit WebScrollbarImpl(Scrollbar*);
- // Implement blink::WebScrollbar methods
+ // Implement WebScrollbar methods
virtual bool isOverlay() const OVERRIDE;
virtual int value() const OVERRIDE;
virtual WebPoint location() const OVERRIDE;
@@ -60,7 +57,7 @@ public:
virtual void setIsAlphaLocked(bool) OVERRIDE;
private:
- RefPtr<blink::Scrollbar> m_scrollbar;
+ RefPtr<Scrollbar> m_scrollbar;
};
} // namespace blink
« no previous file with comments | « Source/platform/exported/WebSchedulerProxy.cpp ('k') | Source/platform/exported/WebScrollbarImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698