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

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 in platform/animation ~ /exported 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
Index: Source/platform/exported/WebScrollbarImpl.h
diff --git a/Source/platform/exported/WebScrollbarImpl.h b/Source/platform/exported/WebScrollbarImpl.h
index 97a8cadffcd267487610e8042b0225ec698f959e..e5ff8a34ca398672404b8f44213bd9b3d26e8631 100644
--- a/Source/platform/exported/WebScrollbarImpl.h
+++ b/Source/platform/exported/WebScrollbarImpl.h
@@ -29,14 +29,11 @@
#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
kangil_ 2014/08/12 08:20:32 s/blink::WebScrollbar/WebScrollbar
heeyoun.lee 2014/08/12 08:34:53 Done.
virtual bool isOverlay() const OVERRIDE;
@@ -60,7 +57,7 @@ public:
virtual void setIsAlphaLocked(bool) OVERRIDE;
private:
- RefPtr<blink::Scrollbar> m_scrollbar;
+ RefPtr<Scrollbar> m_scrollbar;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698