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

Unified Diff: Source/platform/exported/WebScrollbarThemeGeometryNative.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
Index: Source/platform/exported/WebScrollbarThemeGeometryNative.h
diff --git a/Source/platform/exported/WebScrollbarThemeGeometryNative.h b/Source/platform/exported/WebScrollbarThemeGeometryNative.h
index 87af1605936740b2a134410f81b531c677fea68e..e1a591ec19c67238ee5ab0c2fe80db03c9b3f141 100644
--- a/Source/platform/exported/WebScrollbarThemeGeometryNative.h
+++ b/Source/platform/exported/WebScrollbarThemeGeometryNative.h
@@ -32,16 +32,13 @@
#include "wtf/PassOwnPtr.h"
namespace blink {
-class ScrollbarTheme;
-}
-
-namespace blink {
+class ScrollbarTheme;
class WebScrollbar;
class PLATFORM_EXPORT WebScrollbarThemeGeometryNative : public WebScrollbarThemeGeometry {
public:
- static PassOwnPtr<WebScrollbarThemeGeometryNative> create(blink::ScrollbarTheme*);
+ static PassOwnPtr<WebScrollbarThemeGeometryNative> create(ScrollbarTheme*);
// WebScrollbarThemeGeometry overrides
virtual WebScrollbarThemeGeometryNative* clone() const OVERRIDE;
@@ -63,12 +60,12 @@ public:
virtual void splitTrack(WebScrollbar*, const WebRect& track, WebRect& startTrack, WebRect& thumb, WebRect& endTrack) OVERRIDE;
private:
- explicit WebScrollbarThemeGeometryNative(blink::ScrollbarTheme*);
+ explicit WebScrollbarThemeGeometryNative(ScrollbarTheme*);
// The theme is not owned by this class. It is assumed that the theme is a
// static pointer and its lifetime is essentially infinite. Only thread-safe
// functions on the theme can be called by this theme.
- blink::ScrollbarTheme* m_theme;
+ ScrollbarTheme* m_theme;
};
} // namespace blink
« no previous file with comments | « Source/platform/exported/WebScrollbarThemeClientImpl.cpp ('k') | Source/platform/exported/WebScrollbarThemeGeometryNative.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698