| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef UI_COMPOSITOR_LAYER_H_ | 5 #ifndef UI_COMPOSITOR_LAYER_H_ |
| 6 #define UI_COMPOSITOR_LAYER_H_ | 6 #define UI_COMPOSITOR_LAYER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 | 298 |
| 299 // Sets the layer's fill color. May only be called for LAYER_SOLID_COLOR. | 299 // Sets the layer's fill color. May only be called for LAYER_SOLID_COLOR. |
| 300 void SetColor(SkColor color); | 300 void SetColor(SkColor color); |
| 301 SkColor GetTargetColor(); | 301 SkColor GetTargetColor(); |
| 302 SkColor background_color() const; | 302 SkColor background_color() const; |
| 303 | 303 |
| 304 // Updates the nine patch layer's image, aperture and border. May only be | 304 // Updates the nine patch layer's image, aperture and border. May only be |
| 305 // called for LAYER_NINE_PATCH. | 305 // called for LAYER_NINE_PATCH. |
| 306 void UpdateNinePatchLayerImage(const gfx::ImageSkia& image); | 306 void UpdateNinePatchLayerImage(const gfx::ImageSkia& image); |
| 307 void UpdateNinePatchLayerAperture(const gfx::Rect& aperture_in_dip); | 307 void UpdateNinePatchLayerAperture(const gfx::Rect& aperture_in_dip); |
| 308 void UpdateNinePatchLayerBorder(const gfx::Rect& border); |
| 308 // Updates the area completely occluded by another layer, this can be an | 309 // Updates the area completely occluded by another layer, this can be an |
| 309 // empty rectangle if nothing is occluded. | 310 // empty rectangle if nothing is occluded. |
| 310 void UpdateNinePatchOcclusion(const gfx::Rect& occlusion); | 311 void UpdateNinePatchOcclusion(const gfx::Rect& occlusion); |
| 311 | 312 |
| 312 // Adds |invalid_rect| to the Layer's pending invalid rect and calls | 313 // Adds |invalid_rect| to the Layer's pending invalid rect and calls |
| 313 // ScheduleDraw(). Returns false if the paint request is ignored. | 314 // ScheduleDraw(). Returns false if the paint request is ignored. |
| 314 bool SchedulePaint(const gfx::Rect& invalid_rect); | 315 bool SchedulePaint(const gfx::Rect& invalid_rect); |
| 315 | 316 |
| 316 // Schedules a redraw of the layer tree at the compositor. | 317 // Schedules a redraw of the layer tree at the compositor. |
| 317 // Note that this _does not_ invalidate any region of this layer; use | 318 // Note that this _does not_ invalidate any region of this layer; use |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 // The size of the frame or texture in DIP, set when SetShowDelegatedContent | 503 // The size of the frame or texture in DIP, set when SetShowDelegatedContent |
| 503 // or SetTextureMailbox was called. | 504 // or SetTextureMailbox was called. |
| 504 gfx::Size frame_size_in_dip_; | 505 gfx::Size frame_size_in_dip_; |
| 505 | 506 |
| 506 DISALLOW_COPY_AND_ASSIGN(Layer); | 507 DISALLOW_COPY_AND_ASSIGN(Layer); |
| 507 }; | 508 }; |
| 508 | 509 |
| 509 } // namespace ui | 510 } // namespace ui |
| 510 | 511 |
| 511 #endif // UI_COMPOSITOR_LAYER_H_ | 512 #endif // UI_COMPOSITOR_LAYER_H_ |
| OLD | NEW |