| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/renderer/compositor_bindings/web_nine_patch_layer_impl.h" | 5 #include "content/renderer/compositor_bindings/web_nine_patch_layer_impl.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "cc/base/switches.h" | 8 #include "cc/base/switches.h" |
| 9 #include "cc/layers/nine_patch_layer.h" | 9 #include "cc/layers/nine_patch_layer.h" |
| 10 #include "cc/layers/picture_image_layer.h" | 10 #include "cc/layers/picture_image_layer.h" |
| 11 #include "webkit/renderer/compositor_bindings/web_layer_impl.h" | 11 #include "content/renderer/compositor_bindings/web_layer_impl.h" |
| 12 #include "webkit/renderer/compositor_bindings/web_layer_impl_fixed_bounds.h" | 12 #include "content/renderer/compositor_bindings/web_layer_impl_fixed_bounds.h" |
| 13 | 13 |
| 14 namespace webkit { | 14 namespace content { |
| 15 | 15 |
| 16 WebNinePatchLayerImpl::WebNinePatchLayerImpl() { | 16 WebNinePatchLayerImpl::WebNinePatchLayerImpl() { |
| 17 layer_.reset(new WebLayerImpl(cc::NinePatchLayer::Create())); | 17 layer_.reset(new WebLayerImpl(cc::NinePatchLayer::Create())); |
| 18 } | 18 } |
| 19 | 19 |
| 20 WebNinePatchLayerImpl::~WebNinePatchLayerImpl() {} | 20 WebNinePatchLayerImpl::~WebNinePatchLayerImpl() { |
| 21 } |
| 21 | 22 |
| 22 blink::WebLayer* WebNinePatchLayerImpl::layer() { return layer_.get(); } | 23 blink::WebLayer* WebNinePatchLayerImpl::layer() { |
| 24 return layer_.get(); |
| 25 } |
| 23 | 26 |
| 24 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap, | 27 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap, |
| 25 const blink::WebRect& aperture) { | 28 const blink::WebRect& aperture) { |
| 26 setBitmap(bitmap); | 29 setBitmap(bitmap); |
| 27 setAperture(aperture); | 30 setAperture(aperture); |
| 28 setBorder(blink::WebRect(aperture.x, aperture.y, | 31 setBorder(blink::WebRect(aperture.x, |
| 29 bitmap.width() - aperture.width, | 32 aperture.y, |
| 30 bitmap.height() - aperture.height)); | 33 bitmap.width() - aperture.width, |
| 34 bitmap.height() - aperture.height)); |
| 31 } | 35 } |
| 32 | 36 |
| 33 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap) { | 37 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap) { |
| 34 cc::NinePatchLayer* nine_patch = | 38 cc::NinePatchLayer* nine_patch = |
| 35 static_cast<cc::NinePatchLayer*>(layer_->layer()); | 39 static_cast<cc::NinePatchLayer*>(layer_->layer()); |
| 36 nine_patch->SetBitmap(bitmap); | 40 nine_patch->SetBitmap(bitmap); |
| 37 } | 41 } |
| 38 | 42 |
| 39 void WebNinePatchLayerImpl::setAperture(const blink::WebRect& aperture) { | 43 void WebNinePatchLayerImpl::setAperture(const blink::WebRect& aperture) { |
| 40 cc::NinePatchLayer* nine_patch = | 44 cc::NinePatchLayer* nine_patch = |
| 41 static_cast<cc::NinePatchLayer*>(layer_->layer()); | 45 static_cast<cc::NinePatchLayer*>(layer_->layer()); |
| 42 nine_patch->SetAperture(gfx::Rect(aperture)); | 46 nine_patch->SetAperture(gfx::Rect(aperture)); |
| 43 } | 47 } |
| 44 | 48 |
| 45 void WebNinePatchLayerImpl::setBorder(const blink::WebRect& border) { | 49 void WebNinePatchLayerImpl::setBorder(const blink::WebRect& border) { |
| 46 cc::NinePatchLayer* nine_patch = | 50 cc::NinePatchLayer* nine_patch = |
| 47 static_cast<cc::NinePatchLayer*>(layer_->layer()); | 51 static_cast<cc::NinePatchLayer*>(layer_->layer()); |
| 48 nine_patch->SetBorder(gfx::Rect(border)); | 52 nine_patch->SetBorder(gfx::Rect(border)); |
| 49 } | 53 } |
| 50 | 54 |
| 51 void WebNinePatchLayerImpl::setFillCenter(bool fill_center) { | 55 void WebNinePatchLayerImpl::setFillCenter(bool fill_center) { |
| 52 cc::NinePatchLayer* nine_patch = | 56 cc::NinePatchLayer* nine_patch = |
| 53 static_cast<cc::NinePatchLayer*>(layer_->layer()); | 57 static_cast<cc::NinePatchLayer*>(layer_->layer()); |
| 54 nine_patch->SetFillCenter(fill_center); | 58 nine_patch->SetFillCenter(fill_center); |
| 55 } | 59 } |
| 56 | 60 |
| 57 } // namespace webkit | 61 } // namespace content |
| 62 |
| OLD | NEW |