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/window_state.h" | 5 #include "ash/wm/window_state.h" |
6 | 6 |
7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
8 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
9 #include "ash/screen_util.h" | 9 #include "ash/screen_util.h" |
10 #include "ash/shell_window_ids.h" | 10 #include "ash/shell_window_ids.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 namespace wm { | 31 namespace wm { |
32 | 32 |
33 namespace { | 33 namespace { |
34 | 34 |
35 // A tentative class to set the bounds on the window. | 35 // A tentative class to set the bounds on the window. |
36 // TODO(oshima): Once all logic is cleaned up, move this to the real layout | 36 // TODO(oshima): Once all logic is cleaned up, move this to the real layout |
37 // manager with proper friendship. | 37 // manager with proper friendship. |
38 class BoundsSetter : public aura::LayoutManager { | 38 class BoundsSetter : public aura::LayoutManager { |
39 public: | 39 public: |
40 BoundsSetter() {} | 40 BoundsSetter() {} |
41 virtual ~BoundsSetter() {} | 41 ~BoundsSetter() override {} |
42 | 42 |
43 // aura::LayoutManager overrides: | 43 // aura::LayoutManager overrides: |
44 virtual void OnWindowResized() override {} | 44 void OnWindowResized() override {} |
45 virtual void OnWindowAddedToLayout(aura::Window* child) override {} | 45 void OnWindowAddedToLayout(aura::Window* child) override {} |
46 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) override {} | 46 void OnWillRemoveWindowFromLayout(aura::Window* child) override {} |
47 virtual void OnWindowRemovedFromLayout(aura::Window* child) override {} | 47 void OnWindowRemovedFromLayout(aura::Window* child) override {} |
48 virtual void OnChildWindowVisibilityChanged( | 48 void OnChildWindowVisibilityChanged(aura::Window* child, |
49 aura::Window* child, bool visible) override {} | 49 bool visible) override {} |
50 virtual void SetChildBounds( | 50 void SetChildBounds(aura::Window* child, |
51 aura::Window* child, const gfx::Rect& requested_bounds) override {} | 51 const gfx::Rect& requested_bounds) override {} |
52 | 52 |
53 void SetBounds(aura::Window* window, const gfx::Rect& bounds) { | 53 void SetBounds(aura::Window* window, const gfx::Rect& bounds) { |
54 SetChildBoundsDirect(window, bounds); | 54 SetChildBoundsDirect(window, bounds); |
55 } | 55 } |
56 | 56 |
57 private: | 57 private: |
58 DISALLOW_COPY_AND_ASSIGN(BoundsSetter); | 58 DISALLOW_COPY_AND_ASSIGN(BoundsSetter); |
59 }; | 59 }; |
60 | 60 |
61 WMEventType WMEventTypeFromShowState(ui::WindowShowState requested_show_state) { | 61 WMEventType WMEventTypeFromShowState(ui::WindowShowState requested_show_state) { |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 } | 451 } |
452 return settings; | 452 return settings; |
453 } | 453 } |
454 | 454 |
455 const WindowState* GetWindowState(const aura::Window* window) { | 455 const WindowState* GetWindowState(const aura::Window* window) { |
456 return GetWindowState(const_cast<aura::Window*>(window)); | 456 return GetWindowState(const_cast<aura::Window*>(window)); |
457 } | 457 } |
458 | 458 |
459 } // namespace wm | 459 } // namespace wm |
460 } // namespace ash | 460 } // namespace ash |
OLD | NEW |