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

Unified Diff: webkit/renderer/compositor_bindings/web_nine_patch_layer_impl.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (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
Index: webkit/renderer/compositor_bindings/web_nine_patch_layer_impl.h
diff --git a/webkit/renderer/compositor_bindings/web_nine_patch_layer_impl.h b/webkit/renderer/compositor_bindings/web_nine_patch_layer_impl.h
index 2a5720dbd8da6ecbc110fecb8c41ddd4215ee14f..5cca0389fc8a0a3493f1ce61071af5ca0a02f501 100644
--- a/webkit/renderer/compositor_bindings/web_nine_patch_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_nine_patch_layer_impl.h
@@ -14,20 +14,20 @@ namespace webkit {
class WebLayerImpl;
-class WebNinePatchLayerImpl : public WebKit::WebNinePatchLayer {
+class WebNinePatchLayerImpl : public blink::WebNinePatchLayer {
public:
WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebNinePatchLayerImpl();
virtual ~WebNinePatchLayerImpl();
- // WebKit::WebNinePatchLayer implementation.
- virtual WebKit::WebLayer* layer();
+ // blink::WebNinePatchLayer implementation.
+ virtual blink::WebLayer* layer();
- // TODO(ccameron): Remove setBitmap(SkBitmap, WebKit::WebRect) in favor of
+ // TODO(ccameron): Remove setBitmap(SkBitmap, blink::WebRect) in favor of
// setBitmap(), setAperture(), and setBorder();
- virtual void setBitmap(SkBitmap bitmap, const WebKit::WebRect& aperture);
+ virtual void setBitmap(SkBitmap bitmap, const blink::WebRect& aperture);
virtual void setBitmap(SkBitmap bitmap);
- virtual void setAperture(const WebKit::WebRect& aperture);
- virtual void setBorder(const WebKit::WebRect& border);
+ virtual void setAperture(const blink::WebRect& aperture);
+ virtual void setBorder(const blink::WebRect& border);
virtual void setFillCenter(bool fill_center);
private:

Powered by Google App Engine
This is Rietveld 408576698