layer.h revision 116680a4aac90f2aa7413d9095a592090648e557
15821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Copyright (c) 2012 The Chromium Authors. All rights reserved.
25821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
35821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// found in the LICENSE file.
45821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
55821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#ifndef UI_COMPOSITOR_LAYER_H_
65821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#define UI_COMPOSITOR_LAYER_H_
75821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
85821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include <string>
95821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include <vector>
105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "base/compiler_specific.h"
125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "base/memory/ref_counted.h"
135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "base/memory/scoped_ptr.h"
14ca12bfac764ba476d6cd062bf1dde12cc64c3f40Ben Murdoch#include "base/message_loop/message_loop.h"
152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "cc/animation/animation_events.h"
162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "cc/animation/layer_animation_event_observer.h"
172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "cc/base/scoped_ptr_vector.h"
182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "cc/layers/content_layer_client.h"
19424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)#include "cc/layers/layer_client.h"
202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "cc/layers/texture_layer_client.h"
21868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)#include "cc/resources/texture_mailbox.h"
225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "third_party/skia/include/core/SkColor.h"
235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "third_party/skia/include/core/SkRegion.h"
245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "ui/compositor/compositor.h"
255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "ui/compositor/layer_animation_delegate.h"
265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "ui/compositor/layer_delegate.h"
275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "ui/compositor/layer_type.h"
285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "ui/gfx/rect.h"
295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#include "ui/gfx/transform.h"
305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)class SkCanvas;
325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)namespace cc {
342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)class ContentLayer;
357dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochclass CopyOutputRequest;
364e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)class DelegatedFrameProvider;
372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)class DelegatedRendererLayer;
382a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)class Layer;
39116680a4aac90f2aa7413d9095a592090648e557Ben Murdochclass NinePatchLayer;
402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)class ResourceUpdateQueue;
412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)class SolidColorLayer;
422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)class TextureLayer;
433551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)struct ReturnedResource;
443551c9c881056c480085172ff9840cab31610854Torne (Richard Coles)typedef std::vector<ReturnedResource> ReturnedResourceArray;
452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)namespace ui {
485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)class Compositor;
505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)class LayerAnimator;
51a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)class LayerOwner;
525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Layer manages a texture, transform and a set of child Layers. Any View that
545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// has enabled layers ends up creating a Layer to manage the texture.
555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// A Layer can also be created without a texture, in which case it renders
565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// nothing and is simply used as a node in a hierarchy of layers.
575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// Coordinate system used in layers is DIP (Density Independent Pixel)
585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// coordinates unless explicitly mentioned as pixel coordinates.
595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)//
605d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// NOTE: Unlike Views, each Layer does *not* own its child Layers. If you
615d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)// delete a Layer and it has children, the parent of each child Layer is set to
625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)// NULL, but the children are not deleted.
635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)class COMPOSITOR_EXPORT Layer
645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)    : public LayerAnimationDelegate,
652a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      NON_EXPORTED_BASE(public cc::ContentLayerClient),
662a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      NON_EXPORTED_BASE(public cc::TextureLayerClient),
67424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)      NON_EXPORTED_BASE(public cc::LayerClient),
682a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      NON_EXPORTED_BASE(public cc::LayerAnimationEventObserver) {
695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) public:
705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  Layer();
715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  explicit Layer(LayerType type);
725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual ~Layer();
735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
74a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  static bool UsingPictureLayer();
75a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Retrieves the Layer's compositor. The Layer will walk up its parent chain
775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // to locate it. Returns NULL if the Layer is not attached to a compositor.
785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  Compositor* GetCompositor();
795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Called by the compositor when the Layer is set as its root Layer. This can
815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // only ever be called on the root layer.
825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetCompositor(Compositor* compositor);
835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  LayerDelegate* delegate() { return delegate_; }
855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void set_delegate(LayerDelegate* delegate) { delegate_ = delegate; }
865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
87a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  LayerOwner* owner() { return owner_; }
88a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Adds a new Layer to this Layer.
905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void Add(Layer* child);
915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Removes a Layer from this Layer.
935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void Remove(Layer* child);
945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Stacks |child| above all other children.
965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void StackAtTop(Layer* child);
975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Stacks |child| directly above |other|.  Both must be children of this
995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // layer.  Note that if |child| is initially stacked even higher, calling this
1005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // method will result in |child| being lowered in the stacking order.
1015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void StackAbove(Layer* child, Layer* other);
1025821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Stacks |child| below all other children.
1045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void StackAtBottom(Layer* child);
1055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Stacks |child| directly below |other|.  Both must be children of this
1075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // layer.
1085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void StackBelow(Layer* child, Layer* other);
1095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Returns the child Layers.
1115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  const std::vector<Layer*>& children() const { return children_; }
1125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // The parent.
1145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  const Layer* parent() const { return parent_; }
1155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  Layer* parent() { return parent_; }
1165821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1175821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  LayerType type() const { return type_; }
1185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1195821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Returns true if this Layer contains |other| somewhere in its children.
1205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool Contains(const Layer* other) const;
1215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // The layer's animator is responsible for causing automatic animations when
1235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // properties are set. It also manages a queue of pending animations and
1245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // handles blending of animations. The layer takes ownership of the animator.
1255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetAnimator(LayerAnimator* animator);
1265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Returns the layer's animator. Creates a default animator of one has not
1285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // been set. Will not return NULL.
1295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  LayerAnimator* GetAnimator();
1305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // The transform, relative to the parent.
1325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetTransform(const gfx::Transform& transform);
1332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  gfx::Transform transform() const;
1345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Return the target transform if animator is running, or the current
1365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // transform otherwise.
1375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  gfx::Transform GetTargetTransform() const;
1385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // The bounds, relative to the parent.
1405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetBounds(const gfx::Rect& bounds);
1415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  const gfx::Rect& bounds() const { return bounds_; }
1425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
143f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)  // The offset from our parent (stored in bounds.origin()) is an integer but we
144f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)  // may need to be at a fractional pixel offset to align properly on screen.
145f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)  void SetSubpixelPositionOffset(const gfx::Vector2dF offset);
146116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  const gfx::Vector2dF& subpixel_position_offset() const {
147116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch    return subpixel_position_offset_;
148116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  }
149f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)
1505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Return the target bounds if animator is running, or the current bounds
1515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // otherwise.
1525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  gfx::Rect GetTargetBounds() const;
1535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Sets/gets whether or not drawing of child layers should be clipped to the
1555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // bounds of this layer.
1565821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetMasksToBounds(bool masks_to_bounds);
1575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool GetMasksToBounds() const;
1585821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // The opacity of the layer. The opacity is applied to each pixel of the
1605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // texture (resulting alpha = opacity * alpha).
1612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  float opacity() const;
1625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetOpacity(float opacity);
1635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Returns the actual opacity, which the opacity of this layer multipled by
1655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // the combined opacity of the parent.
1665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float GetCombinedOpacity() const;
1675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Blur pixels by this amount in anything below the layer and visible through
1695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // the layer.
1705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  int background_blur() const { return background_blur_radius_; }
1715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetBackgroundBlur(int blur_radius);
1725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Saturate all pixels of this layer by this amount.
1745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // This effect will get "combined" with the inverted,
1755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // brightness and grayscale setting.
1765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float layer_saturation() const { return layer_saturation_; }
1775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetLayerSaturation(float saturation);
1785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Change the brightness of all pixels from this layer by this amount.
1805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // This effect will get "combined" with the inverted, saturate
1815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // and grayscale setting.
1825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float layer_brightness() const { return layer_brightness_; }
1835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetLayerBrightness(float brightness);
1845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Return the target brightness if animator is running, or the current
1865821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // brightness otherwise.
1875821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float GetTargetBrightness() const;
1885821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1895821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Change the grayscale of all pixels from this layer by this amount.
1905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // This effect will get "combined" with the inverted, saturate
1915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // and brightness setting.
1925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float layer_grayscale() const { return layer_grayscale_; }
1935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetLayerGrayscale(float grayscale);
1945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Return the target grayscale if animator is running, or the current
1965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // grayscale otherwise.
1975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float GetTargetGrayscale() const;
1985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
1992a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // Zoom the background by a factor of |zoom|. The effect is blended along the
2002a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // edge across |inset| pixels.
2012a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  void SetBackgroundZoom(float zoom, int inset);
2022a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2030529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  // Set the shape of this layer.
2040529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  void SetAlphaShape(scoped_ptr<SkRegion> region);
2050529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch
2065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Invert the layer.
2075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool layer_inverted() const { return layer_inverted_; }
2085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetLayerInverted(bool inverted);
2095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Return the target opacity if animator is running, or the current opacity
2115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // otherwise.
2125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float GetTargetOpacity() const;
2135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Set a layer mask for a layer.
2155821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Note the provided layer mask can neither have a layer mask itself nor can
2165d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // it have any children. The ownership of |layer_mask| will not be
2175d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // transferred with this call.
2185821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Furthermore: A mask layer can only be set to one layer.
2195d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  void SetMaskLayer(Layer* layer_mask);
2205d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  Layer* layer_mask_layer() { return layer_mask_; }
2215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Sets the visibility of the Layer. A Layer may be visible but not
2235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // drawn. This happens if any ancestor of a Layer is not visible.
2245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetVisible(bool visible);
2255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool visible() const { return visible_; }
2265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Returns the target visibility if the animator is running. Otherwise, it
2285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // returns the current visibility.
2295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool GetTargetVisibility() const;
2305821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Returns true if this Layer is drawn. A Layer is drawn only if all ancestors
2325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // are visible.
2335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool IsDrawn() const;
2345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Returns true if this layer can have a texture (has_texture_ is true)
2365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // and is not completely obscured by a child.
2375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool ShouldDraw() const;
2385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Converts a point from the coordinates of |source| to the coordinates of
2405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // |target|. Necessarily, |source| and |target| must inhabit the same Layer
2415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // tree.
2425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  static void ConvertPointToLayer(const Layer* source,
2435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)                                  const Layer* target,
2445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)                                  gfx::Point* point);
2455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // Converts a transform to be relative to the given |ancestor|. Returns
2472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // whether success (that is, whether the given ancestor was really an
2482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // ancestor of this layer).
2492a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  bool GetTargetTransformRelativeTo(const Layer* ancestor,
2502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                    gfx::Transform* transform) const;
2512a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // See description in View for details
2535821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetFillsBoundsOpaquely(bool fills_bounds_opaquely);
2545821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool fills_bounds_opaquely() const { return fills_bounds_opaquely_; }
2555821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
256effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch  // Set to true if this layer always paints completely within its bounds. If so
257effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch  // we can omit an unnecessary clear, even if the layer is transparent.
258effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch  void SetFillsBoundsCompletely(bool fills_bounds_completely);
259effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch
2605821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  const std::string& name() const { return name_; }
2615821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void set_name(const std::string& name) { name_ = name; }
2625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
263868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  // Set new TextureMailbox for this layer. Note that |mailbox| may hold a
264868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  // shared memory resource or an actual mailbox for a texture.
265d0247b1b59f9c528cb6df88b4f2b9afaf80d181eTorne (Richard Coles)  void SetTextureMailbox(const cc::TextureMailbox& mailbox,
266d0247b1b59f9c528cb6df88b4f2b9afaf80d181eTorne (Richard Coles)                         scoped_ptr<cc::SingleReleaseCallback> release_callback,
267c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch                         gfx::Size texture_size_in_dip);
268c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  void SetTextureSize(gfx::Size texture_size_in_dip);
269868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
2704e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  // Begins showing delegated frames from the |frame_provider|.
2714e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  void SetShowDelegatedContent(cc::DelegatedFrameProvider* frame_provider,
2724e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)                               gfx::Size frame_size_in_dip);
2732a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2747dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  bool has_external_content() {
2757dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch    return texture_layer_.get() || delegated_renderer_layer_.get();
2767dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  }
2777dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
2784e180b6a0b4720a9b8e9e959a882386f690f08ffTorne (Richard Coles)  void SetShowPaintedContent();
2792a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2805821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Sets the layer's fill color.  May only be called for LAYER_SOLID_COLOR.
2815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetColor(SkColor color);
2825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
283116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  // Updates the nine patch layer's bitmap and aperture. May only be called for
284116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  // LAYER_NINE_PATCH.
285116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  void UpdateNinePatchLayerBitmap(const SkBitmap& bitmap,
286116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch                                  const gfx::Rect& aperture);
287116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
288116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  // Updates the nine patch layer's border. May only be called for
289116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  // LAYER_NINE_PATCH.
290116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  void UpdateNinePatchLayerBorder(const gfx::Rect& border);
291116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
2925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Adds |invalid_rect| to the Layer's pending invalid rect and calls
2935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // ScheduleDraw(). Returns false if the paint request is ignored.
2945821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool SchedulePaint(const gfx::Rect& invalid_rect);
2955821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
2965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Schedules a redraw of the layer tree at the compositor.
2975821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Note that this _does not_ invalidate any region of this layer; use
2985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // SchedulePaint() for that.
2995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void ScheduleDraw();
3005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3015d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // Uses damaged rectangles recorded in |damaged_region_| to invalidate the
3025d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // |cc_layer_|.
3035821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SendDamagedRects();
3045821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
305a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)  const SkRegion& damaged_region() const { return damaged_region_; }
306a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
30746d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)  void CompleteAllAnimations();
30846d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
3095d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // Suppresses painting the content by disconnecting |delegate_|.
3105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SuppressPaint();
3115821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3125821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Notifies the layer that the device scale factor has changed.
3135821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void OnDeviceScaleFactorChanged(float device_scale_factor);
3145821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3157dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  // Requets a copy of the layer's output as a texture or bitmap.
3167dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch  void RequestCopyOfOutput(scoped_ptr<cc::CopyOutputRequest> request);
3177dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
3182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // ContentLayerClient
3192a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  virtual void PaintContents(
320010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)      SkCanvas* canvas,
321010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)      const gfx::Rect& clip,
322010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)      gfx::RectF* opaque,
323010d83a9304c5a91596085d917d248abff47903aTorne (Richard Coles)      ContentLayerClient::GraphicsContextStatus gc_status) OVERRIDE;
3242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  virtual void DidChangeLayerCanUseLCDText() OVERRIDE {}
325effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch  virtual bool FillsBoundsCompletely() const OVERRIDE;
3265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  cc::Layer* cc_layer() { return cc_layer_; }
3285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // TextureLayerClient
330d0247b1b59f9c528cb6df88b4f2b9afaf80d181eTorne (Richard Coles)  virtual bool PrepareTextureMailbox(
331d0247b1b59f9c528cb6df88b4f2b9afaf80d181eTorne (Richard Coles)      cc::TextureMailbox* mailbox,
332d0247b1b59f9c528cb6df88b4f2b9afaf80d181eTorne (Richard Coles)      scoped_ptr<cc::SingleReleaseCallback>* release_callback,
333d0247b1b59f9c528cb6df88b4f2b9afaf80d181eTorne (Richard Coles)      bool use_shared_memory) OVERRIDE;
3345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float device_scale_factor() const { return device_scale_factor_; }
3365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Forces a render surface to be used on this layer. This has no positive
3385821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // impact, and is only used for benchmarking/testing purpose.
3395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetForceRenderSurface(bool force);
3405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool force_render_surface() const { return force_render_surface_; }
3415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
342424c4d7b64af9d0d8fd9624f381f469654d5e3d2Torne (Richard Coles)  // LayerClient
343a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)  virtual scoped_refptr<base::debug::ConvertableToTraceFormat>
344a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)      TakeDebugInfo() OVERRIDE;
345a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
3462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // LayerAnimationEventObserver
3472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  virtual void OnAnimationStarted(const cc::AnimationEvent& event) OVERRIDE;
3482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
3492a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // Whether this layer has animations waiting to get sent to its cc::Layer.
3502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  bool HasPendingThreadedAnimations() {
3512a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    return pending_threaded_animations_.size() != 0;
3522a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  }
3532a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
3542a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // Triggers a call to SwitchToLayer.
3552a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  void SwitchCCLayerForTest();
3562a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
3575821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles) private:
358a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  friend class LayerOwner;
359a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
36046d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)  void CollectAnimators(std::vector<scoped_refptr<LayerAnimator> >* animators);
36146d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
3625821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Stacks |child| above or below |other|.  Helper method for StackAbove() and
3635821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // StackBelow().
3645821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void StackRelativeTo(Layer* child, Layer* other, bool above);
3655821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3665821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool ConvertPointForAncestor(const Layer* ancestor, gfx::Point* point) const;
3675821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool ConvertPointFromAncestor(const Layer* ancestor, gfx::Point* point) const;
3685821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3695821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Implementation of LayerAnimatorDelegate
3705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void SetBoundsFromAnimation(const gfx::Rect& bounds) OVERRIDE;
3715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void SetTransformFromAnimation(
3725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)      const gfx::Transform& transform) OVERRIDE;
3735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void SetOpacityFromAnimation(float opacity) OVERRIDE;
3745821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void SetVisibilityFromAnimation(bool visibility) OVERRIDE;
3755821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void SetBrightnessFromAnimation(float brightness) OVERRIDE;
3765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void SetGrayscaleFromAnimation(float grayscale) OVERRIDE;
3775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void SetColorFromAnimation(SkColor color) OVERRIDE;
3785821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual void ScheduleDrawForAnimation() OVERRIDE;
3795821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual const gfx::Rect& GetBoundsForAnimation() const OVERRIDE;
3802a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  virtual gfx::Transform GetTransformForAnimation() const OVERRIDE;
3815821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual float GetOpacityForAnimation() const OVERRIDE;
3825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual bool GetVisibilityForAnimation() const OVERRIDE;
3835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual float GetBrightnessForAnimation() const OVERRIDE;
3845821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual float GetGrayscaleForAnimation() const OVERRIDE;
3855821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  virtual SkColor GetColorForAnimation() const OVERRIDE;
3862a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  virtual float GetDeviceScaleFactor() const OVERRIDE;
3872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  virtual void AddThreadedAnimation(
3882a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      scoped_ptr<cc::Animation> animation) OVERRIDE;
3892a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  virtual void RemoveThreadedAnimation(int animation_id) OVERRIDE;
39046d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)  virtual LayerAnimatorCollection* GetLayerAnimatorCollection() OVERRIDE;
3915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3925d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // Creates a corresponding composited layer for |type_|.
3935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void CreateWebLayer();
3945d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)
3955d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // Recomputes and sets to |cc_layer_|.
3965821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void RecomputeDrawsContentAndUVRect();
397c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  void RecomputePosition();
3985821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
3995821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Set all filters which got applied to the layer.
4005821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  void SetLayerFilters();
4015821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4022a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // Set all filters which got applied to the layer background.
4032a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  void SetLayerBackgroundFilters();
4042a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
4055d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // Cleanup |cc_layer_| and replaces it with |new_layer|.
4062a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  void SwitchToLayer(scoped_refptr<cc::Layer> new_layer);
4072a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
4082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // We cannot send animations to our cc_layer_ until we have been added to a
4092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // layer tree. Instead, we hold on to these animations in
4102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // pending_threaded_animations_, and expect SendPendingThreadedAnimations to
4112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // be called once we have been added to a tree.
4122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  void SendPendingThreadedAnimations();
4132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
41446d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)  void AddAnimatorsInTreeToCollection(LayerAnimatorCollection* collection);
41546d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)  void RemoveAnimatorsInTreeFromCollection(LayerAnimatorCollection* collection);
41646d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
41746d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)  // Returns whether the layer has an animating LayerAnimator.
41846d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)  bool IsAnimating() const;
41946d4c2bc3267f3f028f39e7e311b0f89aba2e4fdTorne (Richard Coles)
4205821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  const LayerType type_;
4215821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4225821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  Compositor* compositor_;
4235821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4245821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  Layer* parent_;
4255821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4265821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // This layer's children, in bottom-to-top stacking order.
4275821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  std::vector<Layer*> children_;
4285821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4295821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  gfx::Rect bounds_;
430f8ee788a64d60abd8f2d742a5fdedde054ecd910Torne (Richard Coles)  gfx::Vector2dF subpixel_position_offset_;
4315821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4325821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Visibility of this layer. See SetVisible/IsDrawn for more details.
4335821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool visible_;
4345821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4355821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool force_render_surface_;
4365821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4375821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool fills_bounds_opaquely_;
438effb81e5f8246d0db0270817048dc992db66e9fbBen Murdoch  bool fills_bounds_completely_;
4395821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4405821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Union of damaged rects, in pixel coordinates, to be used when
4415821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // compositor is ready to paint the content.
4425821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  SkRegion damaged_region_;
4435821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4445821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  int background_blur_radius_;
4455821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4465821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Several variables which will change the visible representation of
4475821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // the layer.
4485821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float layer_saturation_;
4495821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float layer_brightness_;
4505821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float layer_grayscale_;
4515821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  bool layer_inverted_;
4525821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4535d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // The associated mask layer with this layer.
4545d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  Layer* layer_mask_;
4555d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // The back link from the mask layer to it's associated masked layer.
4565d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // We keep this reference for the case that if the mask layer gets deleted
4575d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  // while attached to the main layer before the main layer is deleted.
4585d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  Layer* layer_mask_back_link_;
4595821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4602a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // The zoom factor to scale the layer by.  Zooming is disabled when this is
4612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // set to 1.
4622a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  float zoom_;
4632a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
4642a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // Width of the border in pixels, where the scaling is blended.
4652a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  int zoom_inset_;
4662a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
4670529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  // Shape of the window.
4680529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch  scoped_ptr<SkRegion> alpha_shape_;
4690529e5d033099cbfc42635f6f6183833b09dff6eBen Murdoch
4705821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  std::string name_;
4715821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4725821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  LayerDelegate* delegate_;
4735821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
474a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  LayerOwner* owner_;
475a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)
4765821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  scoped_refptr<LayerAnimator> animator_;
4775821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4782a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // Animations that are passed to AddThreadedAnimation before this layer is
4792a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // added to a tree.
4802a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  cc::ScopedPtrVector<cc::Animation> pending_threaded_animations_;
4812a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
4825821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // Ownership of the layer is held through one of the strongly typed layer
4835821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // pointers, depending on which sort of layer this is.
484a1401311d1ab56c4ed0a474bd38c108f75cb0cd9Torne (Richard Coles)  scoped_refptr<cc::Layer> content_layer_;
485116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  scoped_refptr<cc::NinePatchLayer> nine_patch_layer_;
4862a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  scoped_refptr<cc::TextureLayer> texture_layer_;
4872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  scoped_refptr<cc::SolidColorLayer> solid_color_layer_;
4882a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  scoped_refptr<cc::DelegatedRendererLayer> delegated_renderer_layer_;
4892a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  cc::Layer* cc_layer_;
4905821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
4915821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  // A cached copy of |Compositor::device_scale_factor()|.
4925821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  float device_scale_factor_;
4935821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
494c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // The mailbox used by texture_layer_.
495868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)  cc::TextureMailbox mailbox_;
496868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
497c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // The callback to release the mailbox. This is only set after
498c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // SetTextureMailbox is called, before we give it to the TextureLayer.
499c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  scoped_ptr<cc::SingleReleaseCallback> mailbox_release_callback_;
500868fa2fe829687343ffae624259930155e16dbd8Torne (Richard Coles)
501c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // The size of the frame or texture in DIP, set when SetShowDelegatedContent
502c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // or SetTextureMailbox was called.
503c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  gfx::Size frame_size_in_dip_;
5042a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
5055821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)  DISALLOW_COPY_AND_ASSIGN(Layer);
5065821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)};
5075821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5085821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)}  // namespace ui
5095821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)
5105821806d5e7f356e8fa4b058a389a808ea183019Torne (Richard Coles)#endif  // UI_COMPOSITOR_LAYER_H_
511