| 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 ASH_WM_DEFAULT_CONTAINER_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_WM_DEFAULT_CONTAINER_LAYOUT_MANAGER_H_ |
| 6 #define ASH_WM_DEFAULT_CONTAINER_LAYOUT_MANAGER_H_ | 6 #define ASH_WM_DEFAULT_CONTAINER_LAYOUT_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "ui/aura/layout_manager.h" | 12 #include "ui/aura/layout_manager.h" |
| 13 #include "ash/ash_export.h" | 13 #include "ash/ash_export.h" |
| 14 | 14 |
| 15 namespace aura { | 15 namespace aura { |
| 16 class MouseEvent; | 16 class MouseEvent; |
| 17 class Window; | 17 class Window; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace gfx { | 20 namespace gfx { |
| 21 class Rect; | 21 class Rect; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace aura_shell { | 24 namespace ash { |
| 25 namespace internal { | 25 namespace internal { |
| 26 | 26 |
| 27 class ShowStateController; | 27 class ShowStateController; |
| 28 class WorkspaceManager; | 28 class WorkspaceManager; |
| 29 | 29 |
| 30 // LayoutManager for the default window container. | 30 // LayoutManager for the default window container. |
| 31 class ASH_EXPORT DefaultContainerLayoutManager | 31 class ASH_EXPORT DefaultContainerLayoutManager |
| 32 : public aura::LayoutManager { | 32 : public aura::LayoutManager { |
| 33 public: | 33 public: |
| 34 explicit DefaultContainerLayoutManager(WorkspaceManager* workspace_manager); | 34 explicit DefaultContainerLayoutManager(WorkspaceManager* workspace_manager); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 65 private: | 65 private: |
| 66 // Owned by WorkspaceController. | 66 // Owned by WorkspaceController. |
| 67 WorkspaceManager* workspace_manager_; | 67 WorkspaceManager* workspace_manager_; |
| 68 | 68 |
| 69 scoped_ptr<ShowStateController> show_state_controller_; | 69 scoped_ptr<ShowStateController> show_state_controller_; |
| 70 | 70 |
| 71 DISALLOW_COPY_AND_ASSIGN(DefaultContainerLayoutManager); | 71 DISALLOW_COPY_AND_ASSIGN(DefaultContainerLayoutManager); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace internal | 74 } // namespace internal |
| 75 } // namespace aura_shell | 75 } // namespace ash |
| 76 | 76 |
| 77 #endif // ASH_WM_DEFAULT_CONTAINER_LAYOUT_MANAGER_H_ | 77 #endif // ASH_WM_DEFAULT_CONTAINER_LAYOUT_MANAGER_H_ |
| OLD | NEW |