| Index: views/view.h
|
| diff --git a/views/view.h b/views/view.h
|
| index d86c8054c88aa5893d1faec133004a82ee005a49..945e38138bf4bff5b9dfa25b65a88d0259212ae4 100644
|
| --- a/views/view.h
|
| +++ b/views/view.h
|
| @@ -36,6 +36,7 @@ namespace ui {
|
| struct AccessibleViewState;
|
| class Compositor;
|
| class Layer;
|
| +class LayerAnimationSequence;
|
| class Texture;
|
| class ThemeProvider;
|
| class Transform;
|
| @@ -55,7 +56,6 @@ class DragController;
|
| class FocusManager;
|
| class FocusTraversable;
|
| class InputMethod;
|
| -class LayerPropertySetter;
|
| class LayoutManager;
|
| class ScrollView;
|
| class TextInputClient;
|
| @@ -286,11 +286,6 @@ class VIEWS_EXPORT View : public ui::LayerDelegate,
|
| // Compositor.
|
| void SetPaintToLayer(bool paint_to_layer);
|
|
|
| - // Sets the LayerPropertySetter for this view. A value of NULL resets the
|
| - // LayerPropertySetter to the default (immediate). Can only be called on a
|
| - // View that has a layer().
|
| - void SetLayerPropertySetter(LayerPropertySetter* setter);
|
| -
|
| const ui::Layer* layer() const { return layer_.get(); }
|
| ui::Layer* layer() { return layer_.get(); }
|
|
|
| @@ -990,7 +985,8 @@ class VIEWS_EXPORT View : public ui::LayerDelegate,
|
|
|
| // Overridden from ui::LayerDelegate:
|
| virtual void OnPaintLayer(gfx::Canvas* canvas) OVERRIDE;
|
| - virtual void OnLayerAnimationEnded(const ui::Animation* animation) OVERRIDE;
|
| + virtual void OnLayerAnimationEnded(
|
| + const ui::LayerAnimationSequence* animation) OVERRIDE;
|
|
|
| // Finds the layer that this view paints to (it may belong to an ancestor
|
| // view), then reorders the immediate children of that layer to match the
|
| @@ -1400,7 +1396,6 @@ class VIEWS_EXPORT View : public ui::LayerDelegate,
|
|
|
| bool paint_to_layer_;
|
| scoped_ptr<ui::Layer> layer_;
|
| - scoped_ptr<LayerPropertySetter> layer_property_setter_;
|
|
|
| // Accelerators --------------------------------------------------------------
|
|
|
|
|