OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "cc/blink/web_nine_patch_layer_impl.h" | 5 #include "cc/blink/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/blink/web_layer_impl.h" | 9 #include "cc/blink/web_layer_impl.h" |
10 #include "cc/blink/web_layer_impl_fixed_bounds.h" | 10 #include "cc/blink/web_layer_impl_fixed_bounds.h" |
11 #include "cc/layers/nine_patch_layer.h" | 11 #include "cc/layers/nine_patch_layer.h" |
12 #include "cc/layers/picture_image_layer.h" | 12 #include "cc/layers/picture_image_layer.h" |
13 | 13 |
14 namespace cc_blink { | 14 namespace cc_blink { |
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 |
23 blink::WebLayer* WebNinePatchLayerImpl::layer() { | 23 blink::WebLayer* WebNinePatchLayerImpl::layer() { |
24 return layer_.get(); | 24 return layer_.get(); |
25 } | 25 } |
26 | 26 |
27 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap, | |
28 const blink::WebRect& aperture) { | |
29 setBitmap(bitmap); | |
30 setAperture(aperture); | |
31 setBorder(blink::WebRect(aperture.x, | |
32 aperture.y, | |
33 bitmap.width() - aperture.width, | |
34 bitmap.height() - aperture.height)); | |
35 } | |
36 | |
37 void WebNinePatchLayerImpl::setBitmap(const SkBitmap& bitmap) { | 27 void WebNinePatchLayerImpl::setBitmap(const SkBitmap& bitmap) { |
38 cc::NinePatchLayer* nine_patch = | 28 cc::NinePatchLayer* nine_patch = |
39 static_cast<cc::NinePatchLayer*>(layer_->layer()); | 29 static_cast<cc::NinePatchLayer*>(layer_->layer()); |
40 nine_patch->SetBitmap(bitmap); | 30 nine_patch->SetBitmap(bitmap); |
41 } | 31 } |
42 | 32 |
43 void WebNinePatchLayerImpl::setAperture(const blink::WebRect& aperture) { | 33 void WebNinePatchLayerImpl::setAperture(const blink::WebRect& aperture) { |
44 cc::NinePatchLayer* nine_patch = | 34 cc::NinePatchLayer* nine_patch = |
45 static_cast<cc::NinePatchLayer*>(layer_->layer()); | 35 static_cast<cc::NinePatchLayer*>(layer_->layer()); |
46 nine_patch->SetAperture(gfx::Rect(aperture)); | 36 nine_patch->SetAperture(gfx::Rect(aperture)); |
47 } | 37 } |
48 | 38 |
49 void WebNinePatchLayerImpl::setBorder(const blink::WebRect& border) { | 39 void WebNinePatchLayerImpl::setBorder(const blink::WebRect& border) { |
50 cc::NinePatchLayer* nine_patch = | 40 cc::NinePatchLayer* nine_patch = |
51 static_cast<cc::NinePatchLayer*>(layer_->layer()); | 41 static_cast<cc::NinePatchLayer*>(layer_->layer()); |
52 nine_patch->SetBorder(gfx::Rect(border)); | 42 nine_patch->SetBorder(gfx::Rect(border)); |
53 } | 43 } |
54 | 44 |
55 } // namespace cc_blink | 45 } // namespace cc_blink |
OLD | NEW |