OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ash/wm/overview/scoped_window_copy.h" | 5 #include "ash/wm/overview/scoped_window_copy.h" |
6 | 6 |
7 #include "ash/screen_util.h" | 7 #include "ash/screen_util.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ui/aura/client/aura_constants.h" | 9 #include "ui/aura/client/aura_constants.h" |
10 #include "ui/aura/client/screen_position_client.h" | 10 #include "ui/aura/client/screen_position_client.h" |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 public: | 83 public: |
84 CleanupWidgetAfterAnimationObserver( | 84 CleanupWidgetAfterAnimationObserver( |
85 views::Widget* widget, | 85 views::Widget* widget, |
86 scoped_ptr<ui::LayerTreeOwner> layer_owner); | 86 scoped_ptr<ui::LayerTreeOwner> layer_owner); |
87 | 87 |
88 // Takes ownership of the widget. At this point the class will delete itself | 88 // Takes ownership of the widget. At this point the class will delete itself |
89 // and clean up the layer when there are no pending animations. | 89 // and clean up the layer when there are no pending animations. |
90 void TakeOwnershipOfWidget(); | 90 void TakeOwnershipOfWidget(); |
91 | 91 |
92 // ui::LayerAnimationObserver: | 92 // ui::LayerAnimationObserver: |
93 virtual void OnLayerAnimationEnded( | 93 void OnLayerAnimationEnded(ui::LayerAnimationSequence* sequence) override; |
94 ui::LayerAnimationSequence* sequence) override; | 94 void OnLayerAnimationAborted(ui::LayerAnimationSequence* sequence) override; |
95 virtual void OnLayerAnimationAborted( | 95 void OnLayerAnimationScheduled(ui::LayerAnimationSequence* sequence) override; |
96 ui::LayerAnimationSequence* sequence) override; | |
97 virtual void OnLayerAnimationScheduled( | |
98 ui::LayerAnimationSequence* sequence) override; | |
99 | 96 |
100 private: | 97 private: |
101 virtual ~CleanupWidgetAfterAnimationObserver(); | 98 ~CleanupWidgetAfterAnimationObserver() override; |
102 | 99 |
103 // If the necessary conditions have been satisfied to destruct this | 100 // If the necessary conditions have been satisfied to destruct this |
104 // class, deletes itself and cleans up the widget and layer. | 101 // class, deletes itself and cleans up the widget and layer. |
105 void MaybeDestruct(); | 102 void MaybeDestruct(); |
106 | 103 |
107 views::Widget* widget_; | 104 views::Widget* widget_; |
108 scoped_ptr<ui::LayerTreeOwner> layer_owner_; | 105 scoped_ptr<ui::LayerTreeOwner> layer_owner_; |
109 bool owns_widget_; | 106 bool owns_widget_; |
110 int pending_animations_; | 107 int pending_animations_; |
111 | 108 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 // The cleanup observer will delete itself and the window when any pending | 166 // The cleanup observer will delete itself and the window when any pending |
170 // animations have completed. | 167 // animations have completed. |
171 cleanup_observer_->TakeOwnershipOfWidget(); | 168 cleanup_observer_->TakeOwnershipOfWidget(); |
172 } | 169 } |
173 | 170 |
174 aura::Window* ScopedWindowCopy::GetWindow() { | 171 aura::Window* ScopedWindowCopy::GetWindow() { |
175 return widget_->GetNativeWindow(); | 172 return widget_->GetNativeWindow(); |
176 } | 173 } |
177 | 174 |
178 } // namespace ash | 175 } // namespace ash |
OLD | NEW |