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

Unified Diff: Source/web/WebPluginScrollbarImpl.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/WebPluginDocument.cpp ('k') | Source/web/WebPluginScrollbarImpl.cpp » ('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 c5119ee3654a73db66dae549465f7266d7a58dbd..75ea881ddc690b8f1d3058286e2467e4e0302e50 100644
--- a/Source/web/WebPluginScrollbarImpl.h
+++ b/Source/web/WebPluginScrollbarImpl.h
@@ -30,7 +30,7 @@
#include "wtf/RefPtr.h"
#include "wtf/Vector.h"
-namespace WebCore {
+namespace blink {
class IntPoint;
class IntRect;
class Scrollbar;
@@ -46,14 +46,14 @@ public:
virtual ~WebPluginScrollbarImpl();
void setScrollOffset(int);
- void invalidateScrollbarRect(const WebCore::IntRect&);
+ void invalidateScrollbarRect(const blink::IntRect&);
// FIXME: Combine this with the other getTickmarks method
- void getTickmarks(Vector<WebCore::IntRect>&) const;
- WebCore::IntPoint convertFromContainingViewToScrollbar(const WebCore::IntPoint& parentPoint) const;
+ void getTickmarks(Vector<blink::IntRect>&) const;
+ blink::IntPoint convertFromContainingViewToScrollbar(const blink::IntPoint& parentPoint) const;
void scrollbarStyleChanged();
int scrollOffset() { return m_scrollOffset; }
- WebCore::Scrollbar* scrollbar() { return m_scrollbar.get(); }
+ blink::Scrollbar* scrollbar() { return m_scrollbar.get(); }
// blink::WebScrollbar methods
virtual bool isOverlay() const OVERRIDE;
@@ -96,7 +96,7 @@ private:
WebPluginScrollbarClient* m_client;
int m_scrollOffset;
- RefPtr<WebCore::Scrollbar> m_scrollbar;
+ RefPtr<blink::Scrollbar> m_scrollbar;
};
} // namespace blink
« no previous file with comments | « Source/web/WebPluginDocument.cpp ('k') | Source/web/WebPluginScrollbarImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698