Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Side by Side Diff: ui/aura_shell/modal_container_layout_manager.h

Issue 8621003: aura: Rename OnPropertyChanged to OnWindowPropertyChanged. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « ui/aura_shell/always_on_top_controller.cc ('k') | ui/aura_shell/modal_container_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698