| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ASH_AURA_WM_WINDOW_AURA_H_ | 5 #ifndef ASH_AURA_WM_WINDOW_AURA_H_ |
| 6 #define ASH_AURA_WM_WINDOW_AURA_H_ | 6 #define ASH_AURA_WM_WINDOW_AURA_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/wm_window.h" | 9 #include "ash/common/wm_window.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 void OnWindowStackingChanged(aura::Window* window) override; | 161 void OnWindowStackingChanged(aura::Window* window) override; |
| 162 void OnWindowPropertyChanged(aura::Window* window, | 162 void OnWindowPropertyChanged(aura::Window* window, |
| 163 const void* key, | 163 const void* key, |
| 164 intptr_t old) override; | 164 intptr_t old) override; |
| 165 void OnWindowBoundsChanged(aura::Window* window, | 165 void OnWindowBoundsChanged(aura::Window* window, |
| 166 const gfx::Rect& old_bounds, | 166 const gfx::Rect& old_bounds, |
| 167 const gfx::Rect& new_bounds) override; | 167 const gfx::Rect& new_bounds) override; |
| 168 void OnWindowDestroying(aura::Window* window) override; | 168 void OnWindowDestroying(aura::Window* window) override; |
| 169 void OnWindowDestroyed(aura::Window* window) override; | 169 void OnWindowDestroyed(aura::Window* window) override; |
| 170 void OnWindowVisibilityChanging(aura::Window* window, bool visible) override; | 170 void OnWindowVisibilityChanging(aura::Window* window, bool visible) override; |
| 171 void OnWindowVisibilityChanged(aura::Window* window, bool visible) override; |
| 171 void OnWindowTitleChanged(aura::Window* window) override; | 172 void OnWindowTitleChanged(aura::Window* window) override; |
| 172 | 173 |
| 173 aura::Window* window_; | 174 aura::Window* window_; |
| 174 | 175 |
| 175 base::ObserverList<WmWindowObserver> observers_; | 176 base::ObserverList<WmWindowObserver> observers_; |
| 176 | 177 |
| 177 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); | 178 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); |
| 178 }; | 179 }; |
| 179 | 180 |
| 180 } // namespace ash | 181 } // namespace ash |
| 181 | 182 |
| 182 #endif // ASH_AURA_WM_WINDOW_AURA_H_ | 183 #endif // ASH_AURA_WM_WINDOW_AURA_H_ |
| OLD | NEW |