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

Unified Diff: content/renderer/pepper/ppb_scrollbar_impl.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « content/renderer/pepper/ppb_graphics_3d_impl.cc ('k') | content/renderer/pepper/ppb_scrollbar_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/ppb_scrollbar_impl.h
diff --git a/content/renderer/pepper/ppb_scrollbar_impl.h b/content/renderer/pepper/ppb_scrollbar_impl.h
index eb7906b26b0b978e71240b5b4b51ab05734e0491..f649c816d8ccf78ae19184ff0663f07b2d13e429 100644
--- a/content/renderer/pepper/ppb_scrollbar_impl.h
+++ b/content/renderer/pepper/ppb_scrollbar_impl.h
@@ -20,7 +20,7 @@ namespace content {
class PPB_Scrollbar_Impl : public PPB_Widget_Impl,
public ppapi::thunk::PPB_Scrollbar_API,
- public WebKit::WebPluginScrollbarClient {
+ public blink::WebPluginScrollbarClient {
public:
static PP_Resource Create(PP_Instance instance, bool vertical);
@@ -50,20 +50,20 @@ class PPB_Scrollbar_Impl : public PPB_Widget_Impl,
const ppapi::InputEventData& data) OVERRIDE;
virtual void SetLocationInternal(const PP_Rect* location) OVERRIDE;
- // WebKit::WebPluginScrollbarClient implementation.
- virtual void valueChanged(WebKit::WebPluginScrollbar* scrollbar) OVERRIDE;
- virtual void overlayChanged(WebKit::WebPluginScrollbar* scrollbar) OVERRIDE;
- virtual void invalidateScrollbarRect(WebKit::WebPluginScrollbar* scrollbar,
- const WebKit::WebRect& rect) OVERRIDE;
+ // blink::WebPluginScrollbarClient implementation.
+ virtual void valueChanged(blink::WebPluginScrollbar* scrollbar) OVERRIDE;
+ virtual void overlayChanged(blink::WebPluginScrollbar* scrollbar) OVERRIDE;
+ virtual void invalidateScrollbarRect(blink::WebPluginScrollbar* scrollbar,
+ const blink::WebRect& rect) OVERRIDE;
virtual void getTickmarks(
- WebKit::WebPluginScrollbar* scrollbar,
- WebKit::WebVector<WebKit::WebRect>* tick_marks) const OVERRIDE;
+ blink::WebPluginScrollbar* scrollbar,
+ blink::WebVector<blink::WebRect>* tick_marks) const OVERRIDE;
void NotifyInvalidate();
gfx::Rect dirty_;
- std::vector<WebKit::WebRect> tickmarks_;
- scoped_ptr<WebKit::WebPluginScrollbar> scrollbar_;
+ std::vector<blink::WebRect> tickmarks_;
+ scoped_ptr<blink::WebPluginScrollbar> scrollbar_;
// Used so that the post task for Invalidate doesn't keep an extra reference.
base::WeakPtrFactory<PPB_Scrollbar_Impl> weak_ptr_factory_;
« no previous file with comments | « content/renderer/pepper/ppb_graphics_3d_impl.cc ('k') | content/renderer/pepper/ppb_scrollbar_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698