OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_AURA_SHELL_MODAL_CONTAINER_LAYOUT_MANAGER_H_ | 5 #ifndef UI_AURA_SHELL_MODAL_CONTAINER_LAYOUT_MANAGER_H_ |
6 #define UI_AURA_SHELL_MODAL_CONTAINER_LAYOUT_MANAGER_H_ | 6 #define UI_AURA_SHELL_MODAL_CONTAINER_LAYOUT_MANAGER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 // Overridden from aura::LayoutManager: | 44 // Overridden from aura::LayoutManager: |
45 virtual void OnWindowResized() OVERRIDE; | 45 virtual void OnWindowResized() OVERRIDE; |
46 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; | 46 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; |
47 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE; | 47 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE; |
48 virtual void OnChildWindowVisibilityChanged(aura::Window* child, | 48 virtual void OnChildWindowVisibilityChanged(aura::Window* child, |
49 bool visibile) OVERRIDE; | 49 bool visibile) OVERRIDE; |
50 virtual void SetChildBounds(aura::Window* child, | 50 virtual void SetChildBounds(aura::Window* child, |
51 const gfx::Rect& requested_bounds) OVERRIDE; | 51 const gfx::Rect& requested_bounds) OVERRIDE; |
52 | 52 |
53 // Overridden from aura::WindowObserver: | 53 // Overridden from aura::WindowObserver: |
54 virtual void OnPropertyChanged(aura::Window* window, | 54 virtual void OnWindowPropertyChanged(aura::Window* window, |
55 const char* key, | 55 const char* key, |
56 void* old) OVERRIDE; | 56 void* old) OVERRIDE; |
57 | 57 |
58 // Overridden from ui::LayerAnimationObserver: | 58 // Overridden from ui::LayerAnimationObserver: |
59 virtual void OnLayerAnimationEnded( | 59 virtual void OnLayerAnimationEnded( |
60 const ui::LayerAnimationSequence* sequence) OVERRIDE; | 60 const ui::LayerAnimationSequence* sequence) OVERRIDE; |
61 virtual void OnLayerAnimationAborted( | 61 virtual void OnLayerAnimationAborted( |
62 const ui::LayerAnimationSequence* sequence) OVERRIDE; | 62 const ui::LayerAnimationSequence* sequence) OVERRIDE; |
63 virtual void OnLayerAnimationScheduled( | 63 virtual void OnLayerAnimationScheduled( |
64 const ui::LayerAnimationSequence* sequence) OVERRIDE; | 64 const ui::LayerAnimationSequence* sequence) OVERRIDE; |
65 | 65 |
66 // Overridden from ModalityEventFilterDelegate: | 66 // Overridden from ModalityEventFilterDelegate: |
(...skipping 26 matching lines...) Expand all Loading... |
93 // added, and removed when the last is closed. | 93 // added, and removed when the last is closed. |
94 scoped_ptr<aura::EventFilter> modality_filter_; | 94 scoped_ptr<aura::EventFilter> modality_filter_; |
95 | 95 |
96 DISALLOW_COPY_AND_ASSIGN(ModalContainerLayoutManager); | 96 DISALLOW_COPY_AND_ASSIGN(ModalContainerLayoutManager); |
97 }; | 97 }; |
98 | 98 |
99 } // namespace internal | 99 } // namespace internal |
100 } // namespace aura_shell | 100 } // namespace aura_shell |
101 | 101 |
102 #endif // UI_AURA_SHELL_MODAL_CONTAINER_LAYOUT_MANAGER_H_ | 102 #endif // UI_AURA_SHELL_MODAL_CONTAINER_LAYOUT_MANAGER_H_ |
OLD | NEW |