| 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:
|
|
|