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

Unified Diff: Source/web/WebPluginScrollbarImpl.h

Issue 467573002: Cleanup namespace usage in Source/web/Web*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/web/WebPluginContainerImpl.h ('k') | Source/web/WebPopupMenuImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPluginScrollbarImpl.h
diff --git a/Source/web/WebPluginScrollbarImpl.h b/Source/web/WebPluginScrollbarImpl.h
index 75ea881ddc690b8f1d3058286e2467e4e0302e50..6c6da990165695ffc4b1dcf9d8a5b691c17d2e34 100644
--- a/Source/web/WebPluginScrollbarImpl.h
+++ b/Source/web/WebPluginScrollbarImpl.h
@@ -31,13 +31,10 @@
#include "wtf/Vector.h"
namespace blink {
+
class IntPoint;
class IntRect;
class Scrollbar;
-}
-
-namespace blink {
-
class ScrollbarGroup;
class WebPluginScrollbarImpl FINAL : public WebPluginScrollbar {
@@ -46,16 +43,16 @@ public:
virtual ~WebPluginScrollbarImpl();
void setScrollOffset(int);
- void invalidateScrollbarRect(const blink::IntRect&);
+ void invalidateScrollbarRect(const IntRect&);
// FIXME: Combine this with the other getTickmarks method
- void getTickmarks(Vector<blink::IntRect>&) const;
- blink::IntPoint convertFromContainingViewToScrollbar(const blink::IntPoint& parentPoint) const;
+ void getTickmarks(Vector<IntRect>&) const;
+ IntPoint convertFromContainingViewToScrollbar(const IntPoint& parentPoint) const;
void scrollbarStyleChanged();
int scrollOffset() { return m_scrollOffset; }
- blink::Scrollbar* scrollbar() { return m_scrollbar.get(); }
+ Scrollbar* scrollbar() { return m_scrollbar.get(); }
- // blink::WebScrollbar methods
+ // WebScrollbar methods
virtual bool isOverlay() const OVERRIDE;
virtual int value() const OVERRIDE;
virtual WebPoint location() const OVERRIDE;
@@ -74,7 +71,7 @@ public:
virtual bool isLeftSideVerticalScrollbar() const OVERRIDE;
virtual bool isCustomScrollbar() const OVERRIDE;
- // blink::WebPluginScrollbar methods
+ // WebPluginScrollbar methods
virtual void setLocation(const WebRect&) OVERRIDE;
virtual void setValue(int position) OVERRIDE;
virtual void setDocumentSize(int) OVERRIDE;
@@ -96,7 +93,7 @@ private:
WebPluginScrollbarClient* m_client;
int m_scrollOffset;
- RefPtr<blink::Scrollbar> m_scrollbar;
+ RefPtr<Scrollbar> m_scrollbar;
};
} // namespace blink
« no previous file with comments | « Source/web/WebPluginContainerImpl.h ('k') | Source/web/WebPopupMenuImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698