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

Side by Side Diff: cc/layers/nine_patch_layer_impl.cc

Issue 22870016: Update the nine patch layer to use UI resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed from raw SkPixelRef pointers to skia::RefPtr<SkPixelRef> Created 7 years, 3 months 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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/layers/nine_patch_layer_impl.h" 5 #include "cc/layers/nine_patch_layer_impl.h"
6 6
7 #include "base/strings/stringprintf.h" 7 #include "base/strings/stringprintf.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "cc/base/math_util.h"
9 #include "cc/layers/quad_sink.h" 10 #include "cc/layers/quad_sink.h"
10 #include "cc/quads/texture_draw_quad.h" 11 #include "cc/quads/texture_draw_quad.h"
12 #include "cc/trees/layer_tree_impl.h"
11 #include "ui/gfx/rect_f.h" 13 #include "ui/gfx/rect_f.h"
12 14
13 namespace cc { 15 namespace cc {
14 16
15 NinePatchLayerImpl::NinePatchLayerImpl(LayerTreeImpl* tree_impl, int id) 17 NinePatchLayerImpl::NinePatchLayerImpl(LayerTreeImpl* tree_impl, int id)
16 : LayerImpl(tree_impl, id), 18 : LayerImpl(tree_impl, id),
17 resource_id_(0) {} 19 fill_center_(false),
20 ui_resource_id_(0) {}
18 21
19 NinePatchLayerImpl::~NinePatchLayerImpl() {} 22 NinePatchLayerImpl::~NinePatchLayerImpl() {}
20 23
21 ResourceProvider::ResourceId NinePatchLayerImpl::ContentsResourceId() const { 24 ResourceProvider::ResourceId NinePatchLayerImpl::ContentsResourceId() const {
22 return 0; 25 return 0;
23 } 26 }
24 27
25 scoped_ptr<LayerImpl> NinePatchLayerImpl::CreateLayerImpl( 28 scoped_ptr<LayerImpl> NinePatchLayerImpl::CreateLayerImpl(
26 LayerTreeImpl* tree_impl) { 29 LayerTreeImpl* tree_impl) {
27 return NinePatchLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>(); 30 return NinePatchLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
28 } 31 }
29 32
30 void NinePatchLayerImpl::PushPropertiesTo(LayerImpl* layer) { 33 void NinePatchLayerImpl::PushPropertiesTo(LayerImpl* layer) {
31 LayerImpl::PushPropertiesTo(layer); 34 LayerImpl::PushPropertiesTo(layer);
32 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer); 35 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer);
33 36
34 if (!resource_id_) 37 layer_impl->SetUIResourceId(ui_resource_id_);
35 return; 38 layer_impl->SetLayout(image_bounds_, image_aperture_, border_, fill_center_);
36
37 layer_impl->SetResourceId(resource_id_);
38 layer_impl->SetLayout(image_bounds_, image_aperture_);
39 } 39 }
40 40
41 static gfx::RectF NormalizedRect(float x, 41 static gfx::RectF NormalizedRect(float x,
42 float y, 42 float y,
43 float width, 43 float width,
44 float height, 44 float height,
45 float total_width, 45 float total_width,
46 float total_height) { 46 float total_height) {
47 return gfx::RectF(x / total_width, 47 return gfx::RectF(x / total_width,
48 y / total_height, 48 y / total_height,
49 width / total_width, 49 width / total_width,
50 height / total_height); 50 height / total_height);
51 } 51 }
52 52
53 void NinePatchLayerImpl::SetLayout(gfx::Size image_bounds, gfx::Rect aperture) { 53 void NinePatchLayerImpl::SetUIResourceId(UIResourceId uid) {
54 if (uid == ui_resource_id_)
55 return;
56 ui_resource_id_ = uid;
57 NoteLayerPropertyChanged();
58 }
59
60 void NinePatchLayerImpl::SetLayout(gfx::Size image_bounds,
61 gfx::Rect aperture,
62 gfx::Rect border,
63 bool fill_center) {
64 // This check imposes an ordering on the call sequence. An UIResource must
aelias_OOO_until_Jul13 2013/09/06 04:17:38 How about DCHECKing it instead?
powei 2013/09/09 17:57:18 Done.
65 // exist before SetLayout can be called.
66 if (!ui_resource_id_)
67 return;
68
69 // |border| is in layer space. It cannot exceed the bounds of the layer.
70 DCHECK(!border.size().IsEmpty());
71 DCHECK_GT(bounds().width(), border.width());
72 DCHECK_GT(bounds().height(), border.height());
73
74 // Sanity Check on |border|
75 DCHECK_LT(border.x(), border.width());
76 DCHECK_LT(border.y(), border.height());
77 DCHECK_GT(border.x(), 0);
78 DCHECK_GT(border.y(), 0);
79
80 // |aperture| is in image space. It cannot exceed the bounds of the bitmap.
81 DCHECK(!aperture.size().IsEmpty());
82 DCHECK(gfx::Rect(image_bounds.width(), image_bounds.height())
83 .Contains(aperture));
84
85 // Avoid the degenerate cases where the aperture touches the edge of the
86 // image.
87 DCHECK_LT(aperture.width(), image_bounds.width() - 1);
88 DCHECK_LT(aperture.height(), image_bounds.height()-1);
89 DCHECK_GT(aperture.x(), 0);
90 DCHECK_GT(aperture.y(), 0);
91
92 if (image_bounds_ == image_bounds && image_aperture_ != aperture &&
93 border_ != border && fill_center_ != fill_center)
94 return;
95
54 image_bounds_ = image_bounds; 96 image_bounds_ = image_bounds;
55 image_aperture_ = aperture; 97 image_aperture_ = aperture;
98 border_ = border;
99 fill_center_ = fill_center;
100
101 NoteLayerPropertyChanged();
56 } 102 }
57 103
58 bool NinePatchLayerImpl::WillDraw(DrawMode draw_mode, 104 bool NinePatchLayerImpl::WillDraw(DrawMode draw_mode,
59 ResourceProvider* resource_provider) { 105 ResourceProvider* resource_provider) {
60 if (!resource_id_ || draw_mode == DRAW_MODE_RESOURCELESS_SOFTWARE) 106 if (!ui_resource_id_ || draw_mode == DRAW_MODE_RESOURCELESS_SOFTWARE)
61 return false; 107 return false;
62 return LayerImpl::WillDraw(draw_mode, resource_provider); 108 return LayerImpl::WillDraw(draw_mode, resource_provider);
63 } 109 }
64 110
65 void NinePatchLayerImpl::AppendQuads(QuadSink* quad_sink, 111 void NinePatchLayerImpl::AppendQuads(QuadSink* quad_sink,
66 AppendQuadsData* append_quads_data) { 112 AppendQuadsData* append_quads_data) {
113 if (!ui_resource_id_)
aelias_OOO_until_Jul13 2013/09/06 04:17:38 Can you move these early returns back down below t
powei 2013/09/09 17:57:18 Done.
114 return;
115
116 ResourceProvider::ResourceId resource =
117 layer_tree_impl()->ResourceIdForUIResource(ui_resource_id_);
118
119 if (!resource)
120 return;
121
67 SharedQuadState* shared_quad_state = 122 SharedQuadState* shared_quad_state =
68 quad_sink->UseSharedQuadState(CreateSharedQuadState()); 123 quad_sink->UseSharedQuadState(CreateSharedQuadState());
69 AppendDebugBorderQuad(quad_sink, shared_quad_state, append_quads_data); 124 AppendDebugBorderQuad(quad_sink, shared_quad_state, append_quads_data);
70 125
71 if (!resource_id_)
72 return;
73
74 static const bool flipped = false; 126 static const bool flipped = false;
75 static const bool premultiplied_alpha = true; 127 static const bool premultiplied_alpha = true;
76 128
77 DCHECK(!bounds().IsEmpty()); 129 DCHECK(!bounds().IsEmpty());
78 130
79 // NinePatch border widths in bitmap pixel space 131 // NinePatch border widths in layer space.
80 int left_width = image_aperture_.x(); 132 int layer_left_width = border_.x();
81 int top_height = image_aperture_.y(); 133 int layer_top_height = border_.y();
82 int right_width = image_bounds_.width() - image_aperture_.right(); 134 int layer_right_width = border_.width() - layer_left_width;
83 int bottom_height = image_bounds_.height() - image_aperture_.bottom(); 135 int layer_bottom_height = border_.height() - layer_top_height;
84 136
85 // If layer can't fit the corners, clip to show the outer edges of the 137 int layer_middle_width = bounds().width() - border_.width();
86 // image. 138 int layer_middle_height = bounds().height() - border_.height();
87 int corner_total_width = left_width + right_width;
88 int middle_width = bounds().width() - corner_total_width;
89 if (middle_width < 0) {
90 float left_width_proportion =
91 static_cast<float>(left_width) / corner_total_width;
92 int left_width_crop = middle_width * left_width_proportion;
93 left_width += left_width_crop;
94 right_width = bounds().width() - left_width;
95 middle_width = 0;
96 }
97 int corner_total_height = top_height + bottom_height;
98 int middle_height = bounds().height() - corner_total_height;
99 if (middle_height < 0) {
100 float top_height_proportion =
101 static_cast<float>(top_height) / corner_total_height;
102 int top_height_crop = middle_height * top_height_proportion;
103 top_height += top_height_crop;
104 bottom_height = bounds().height() - top_height;
105 middle_height = 0;
106 }
107 139
108 // Patch positions in layer space 140 // Patch positions in layer space
109 gfx::Rect top_left(0, 0, left_width, top_height); 141 gfx::Rect layer_top_left(0, 0, layer_left_width, layer_top_height);
110 gfx::Rect top_right( 142 gfx::Rect layer_top_right(bounds().width() - layer_right_width,
111 bounds().width() - right_width, 0, right_width, top_height); 143 0,
112 gfx::Rect bottom_left( 144 layer_right_width,
113 0, bounds().height() - bottom_height, left_width, bottom_height); 145 layer_top_height);
114 gfx::Rect bottom_right( 146 gfx::Rect layer_bottom_left(0,
115 top_right.x(), bottom_left.y(), right_width, bottom_height); 147 bounds().height() - layer_bottom_height,
116 gfx::Rect top(top_left.right(), 0, middle_width, top_height); 148 layer_left_width,
117 gfx::Rect left(0, top_left.bottom(), left_width, middle_height); 149 layer_bottom_height);
118 gfx::Rect right(top_right.x(), 150 gfx::Rect layer_bottom_right(layer_top_right.x(),
119 top_right.bottom(), 151 layer_bottom_left.y(),
120 right_width, 152 layer_right_width,
121 left.height()); 153 layer_bottom_height);
122 gfx::Rect bottom(top.x(), bottom_left.y(), top.width(), bottom_height); 154 gfx::Rect layer_top(
155 layer_top_left.right(), 0, layer_middle_width, layer_top_height);
156 gfx::Rect layer_left(
157 0, layer_top_left.bottom(), layer_left_width, layer_middle_height);
158 gfx::Rect layer_right(layer_top_right.x(),
159 layer_top_right.bottom(),
160 layer_right_width,
161 layer_left.height());
162 gfx::Rect layer_bottom(layer_top.x(),
163 layer_bottom_left.y(),
164 layer_top.width(),
165 layer_bottom_height);
166 gfx::Rect layer_center(layer_left_width,
167 layer_top_height,
168 layer_middle_width,
169 layer_middle_height);
123 170
124 float img_width = image_bounds_.width(); 171 // Note the following values are in image (bitmap) space.
125 float img_height = image_bounds_.height(); 172 float image_width = image_bounds_.width();
173 float image_height = image_bounds_.height();
126 174
175 int image_aperture_left_width = image_aperture_.x();
176 int image_aperture_top_height = image_aperture_.y();
177 int image_aperture_right_width = image_width - image_aperture_.right();
178 int image_aperture_bottom_height = image_height - image_aperture_.bottom();
127 // Patch positions in bitmap UV space (from zero to one) 179 // Patch positions in bitmap UV space (from zero to one)
128 gfx::RectF uv_top_left = NormalizedRect(0, 180 gfx::RectF uv_top_left = NormalizedRect(0,
129 0, 181 0,
130 left_width, 182 image_aperture_left_width,
131 top_height, 183 image_aperture_top_height,
132 img_width, 184 image_width,
133 img_height); 185 image_height);
134 gfx::RectF uv_top_right = NormalizedRect(img_width - right_width, 186 gfx::RectF uv_top_right =
135 0, 187 NormalizedRect(image_width - image_aperture_right_width,
136 right_width, 188 0,
137 top_height, 189 image_aperture_right_width,
138 img_width, 190 image_aperture_top_height,
139 img_height); 191 image_width,
140 gfx::RectF uv_bottom_left = NormalizedRect(0, 192 image_height);
141 img_height - bottom_height, 193 gfx::RectF uv_bottom_left =
142 left_width, 194 NormalizedRect(0,
143 bottom_height, 195 image_height - image_aperture_bottom_height,
144 img_width, 196 image_aperture_left_width,
145 img_height); 197 image_aperture_bottom_height,
146 gfx::RectF uv_bottom_right = NormalizedRect(img_width - right_width, 198 image_width,
147 img_height - bottom_height, 199 image_height);
148 right_width, 200 gfx::RectF uv_bottom_right =
149 bottom_height, 201 NormalizedRect(image_width - image_aperture_right_width,
150 img_width, 202 image_height - image_aperture_bottom_height,
151 img_height); 203 image_aperture_right_width,
152 gfx::RectF uv_top(uv_top_left.right(), 204 image_aperture_bottom_height,
153 0, 205 image_width,
154 (img_width - left_width - right_width) / img_width, 206 image_height);
155 (top_height) / img_height); 207 gfx::RectF uv_top(
208 uv_top_left.right(),
209 0,
210 (image_width - image_aperture_left_width - image_aperture_right_width) /
211 image_width,
212 (image_aperture_top_height) / image_height);
156 gfx::RectF uv_left(0, 213 gfx::RectF uv_left(0,
157 uv_top_left.bottom(), 214 uv_top_left.bottom(),
158 left_width / img_width, 215 image_aperture_left_width / image_width,
159 (img_height - top_height - bottom_height) / img_height); 216 (image_height - image_aperture_top_height -
217 image_aperture_bottom_height) /
218 image_height);
160 gfx::RectF uv_right(uv_top_right.x(), 219 gfx::RectF uv_right(uv_top_right.x(),
161 uv_top_right.bottom(), 220 uv_top_right.bottom(),
162 right_width / img_width, 221 image_aperture_right_width / image_width,
163 uv_left.height()); 222 uv_left.height());
164 gfx::RectF uv_bottom(uv_top.x(), 223 gfx::RectF uv_bottom(uv_top.x(),
165 uv_bottom_left.y(), 224 uv_bottom_left.y(),
166 uv_top.width(), 225 uv_top.width(),
167 bottom_height / img_height); 226 image_aperture_bottom_height / image_height);
227 gfx::RectF uv_center(uv_top_left.right(),
228 uv_top_left.bottom(),
229 uv_top.width(),
230 uv_left.height());
168 231
169 // Nothing is opaque here. 232 // Nothing is opaque here.
170 // TODO(danakj): Should we look at the SkBitmaps to determine opaqueness? 233 // TODO(danakj): Should we look at the SkBitmaps to determine opaqueness?
171 gfx::Rect opaque_rect; 234 gfx::Rect opaque_rect;
172 const float vertex_opacity[] = {1.0f, 1.0f, 1.0f, 1.0f}; 235 const float vertex_opacity[] = {1.0f, 1.0f, 1.0f, 1.0f};
173 scoped_ptr<TextureDrawQuad> quad; 236 scoped_ptr<TextureDrawQuad> quad;
174 237
175 quad = TextureDrawQuad::Create(); 238 quad = TextureDrawQuad::Create();
176 quad->SetNew(shared_quad_state, 239 quad->SetNew(shared_quad_state,
177 top_left, 240 layer_top_left,
178 opaque_rect, 241 opaque_rect,
179 resource_id_, 242 resource,
180 premultiplied_alpha, 243 premultiplied_alpha,
181 uv_top_left.origin(), 244 uv_top_left.origin(),
182 uv_top_left.bottom_right(), 245 uv_top_left.bottom_right(),
183 SK_ColorTRANSPARENT, 246 SK_ColorTRANSPARENT,
184 vertex_opacity, 247 vertex_opacity,
185 flipped); 248 flipped);
186 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 249 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
187 250
188 quad = TextureDrawQuad::Create(); 251 quad = TextureDrawQuad::Create();
189 quad->SetNew(shared_quad_state, 252 quad->SetNew(shared_quad_state,
190 top_right, 253 layer_top_right,
191 opaque_rect, 254 opaque_rect,
192 resource_id_, 255 resource,
193 premultiplied_alpha, 256 premultiplied_alpha,
194 uv_top_right.origin(), 257 uv_top_right.origin(),
195 uv_top_right.bottom_right(), 258 uv_top_right.bottom_right(),
196 SK_ColorTRANSPARENT, 259 SK_ColorTRANSPARENT,
197 vertex_opacity, 260 vertex_opacity,
198 flipped); 261 flipped);
199 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 262 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
200 263
201 quad = TextureDrawQuad::Create(); 264 quad = TextureDrawQuad::Create();
202 quad->SetNew(shared_quad_state, 265 quad->SetNew(shared_quad_state,
203 bottom_left, 266 layer_bottom_left,
204 opaque_rect, 267 opaque_rect,
205 resource_id_, 268 resource,
206 premultiplied_alpha, 269 premultiplied_alpha,
207 uv_bottom_left.origin(), 270 uv_bottom_left.origin(),
208 uv_bottom_left.bottom_right(), 271 uv_bottom_left.bottom_right(),
209 SK_ColorTRANSPARENT, 272 SK_ColorTRANSPARENT,
210 vertex_opacity, 273 vertex_opacity,
211 flipped); 274 flipped);
212 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 275 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
213 276
214 quad = TextureDrawQuad::Create(); 277 quad = TextureDrawQuad::Create();
215 quad->SetNew(shared_quad_state, 278 quad->SetNew(shared_quad_state,
216 bottom_right, 279 layer_bottom_right,
217 opaque_rect, 280 opaque_rect,
218 resource_id_, 281 resource,
219 premultiplied_alpha, 282 premultiplied_alpha,
220 uv_bottom_right.origin(), 283 uv_bottom_right.origin(),
221 uv_bottom_right.bottom_right(), 284 uv_bottom_right.bottom_right(),
222 SK_ColorTRANSPARENT, 285 SK_ColorTRANSPARENT,
223 vertex_opacity, 286 vertex_opacity,
224 flipped); 287 flipped);
225 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 288 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
226 289
227 quad = TextureDrawQuad::Create(); 290 quad = TextureDrawQuad::Create();
228 quad->SetNew(shared_quad_state, 291 quad->SetNew(shared_quad_state,
229 top, 292 layer_top,
230 opaque_rect, 293 opaque_rect,
231 resource_id_, 294 resource,
232 premultiplied_alpha, 295 premultiplied_alpha,
233 uv_top.origin(), 296 uv_top.origin(),
234 uv_top.bottom_right(), 297 uv_top.bottom_right(),
235 SK_ColorTRANSPARENT, 298 SK_ColorTRANSPARENT,
236 vertex_opacity, 299 vertex_opacity,
237 flipped); 300 flipped);
238 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 301 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
239 302
240 quad = TextureDrawQuad::Create(); 303 quad = TextureDrawQuad::Create();
241 quad->SetNew(shared_quad_state, 304 quad->SetNew(shared_quad_state,
242 left, 305 layer_left,
243 opaque_rect, 306 opaque_rect,
244 resource_id_, 307 resource,
245 premultiplied_alpha, 308 premultiplied_alpha,
246 uv_left.origin(), 309 uv_left.origin(),
247 uv_left.bottom_right(), 310 uv_left.bottom_right(),
248 SK_ColorTRANSPARENT, 311 SK_ColorTRANSPARENT,
249 vertex_opacity, 312 vertex_opacity,
250 flipped); 313 flipped);
251 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 314 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
252 315
253 quad = TextureDrawQuad::Create(); 316 quad = TextureDrawQuad::Create();
254 quad->SetNew(shared_quad_state, 317 quad->SetNew(shared_quad_state,
255 right, 318 layer_right,
256 opaque_rect, 319 opaque_rect,
257 resource_id_, 320 resource,
258 premultiplied_alpha, 321 premultiplied_alpha,
259 uv_right.origin(), 322 uv_right.origin(),
260 uv_right.bottom_right(), 323 uv_right.bottom_right(),
261 SK_ColorTRANSPARENT, 324 SK_ColorTRANSPARENT,
262 vertex_opacity, 325 vertex_opacity,
263 flipped); 326 flipped);
264 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 327 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
265 328
266 quad = TextureDrawQuad::Create(); 329 quad = TextureDrawQuad::Create();
267 quad->SetNew(shared_quad_state, 330 quad->SetNew(shared_quad_state,
268 bottom, 331 layer_bottom,
269 opaque_rect, 332 opaque_rect,
270 resource_id_, 333 resource,
271 premultiplied_alpha, 334 premultiplied_alpha,
272 uv_bottom.origin(), 335 uv_bottom.origin(),
273 uv_bottom.bottom_right(), 336 uv_bottom.bottom_right(),
274 SK_ColorTRANSPARENT, 337 SK_ColorTRANSPARENT,
275 vertex_opacity, 338 vertex_opacity,
276 flipped); 339 flipped);
277 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data); 340 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
278 }
279 341
280 void NinePatchLayerImpl::DidLoseOutputSurface() { 342 if (fill_center_) {
281 resource_id_ = 0; 343 quad = TextureDrawQuad::Create();
344 quad->SetNew(shared_quad_state,
345 layer_center,
346 opaque_rect,
347 resource,
348 premultiplied_alpha,
349 uv_center.origin(),
350 uv_center.bottom_right(),
351 SK_ColorTRANSPARENT,
352 vertex_opacity,
353 flipped);
354 quad_sink->Append(quad.PassAs<DrawQuad>(), append_quads_data);
355 }
282 } 356 }
283 357
284 const char* NinePatchLayerImpl::LayerTypeAsString() const { 358 const char* NinePatchLayerImpl::LayerTypeAsString() const {
285 return "cc::NinePatchLayerImpl"; 359 return "cc::NinePatchLayerImpl";
286 } 360 }
287 361
288 base::DictionaryValue* NinePatchLayerImpl::LayerTreeAsJson() const { 362 base::DictionaryValue* NinePatchLayerImpl::LayerTreeAsJson() const {
289 base::DictionaryValue* result = LayerImpl::LayerTreeAsJson(); 363 base::DictionaryValue* result = LayerImpl::LayerTreeAsJson();
290 364
291 base::ListValue* list = new base::ListValue; 365 base::ListValue* list = new base::ListValue;
292 list->AppendInteger(image_aperture_.origin().x()); 366 list->AppendInteger(image_aperture_.origin().x());
293 list->AppendInteger(image_aperture_.origin().y()); 367 list->AppendInteger(image_aperture_.origin().y());
294 list->AppendInteger(image_aperture_.size().width()); 368 list->AppendInteger(image_aperture_.size().width());
295 list->AppendInteger(image_aperture_.size().height()); 369 list->AppendInteger(image_aperture_.size().height());
296 result->Set("ImageAperture", list); 370 result->Set("ImageAperture", list);
297 371
298 list = new base::ListValue; 372 result->Set("ImageBounds", MathUtil::AsValue(image_bounds_).release());
299 list->AppendInteger(image_bounds_.width()); 373 result->Set("Border", MathUtil::AsValue(border_).release());
300 list->AppendInteger(image_bounds_.height()); 374
301 result->Set("ImageBounds", list); 375 base::FundamentalValue* fill_center =
376 base::Value::CreateBooleanValue(fill_center_);
377 result->Set("FillCenter", fill_center);
302 378
303 return result; 379 return result;
304 } 380 }
305 381
306 } // namespace cc 382 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698