| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RESIZE_SHADOW_CONTROLLER_H_ | 5 #ifndef ASH_WM_RESIZE_SHADOW_CONTROLLER_H_ |
| 6 #define ASH_WM_RESIZE_SHADOW_CONTROLLER_H_ | 6 #define ASH_WM_RESIZE_SHADOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
| 13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
| 14 #include "ui/aura/window_observer.h" | 14 #include "ui/aura/window_observer.h" |
| 15 | 15 |
| 16 namespace aura { | 16 namespace aura { |
| 17 class Window; | 17 class Window; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace ash { | 20 namespace ash { |
| 21 class ResizeShadow; | 21 class ResizeShadow; |
| 22 | 22 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 52 ResizeShadow* GetShadowForWindow(aura::Window* window); | 52 ResizeShadow* GetShadowForWindow(aura::Window* window); |
| 53 | 53 |
| 54 WindowShadowMap window_shadows_; | 54 WindowShadowMap window_shadows_; |
| 55 | 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(ResizeShadowController); | 56 DISALLOW_COPY_AND_ASSIGN(ResizeShadowController); |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace ash | 59 } // namespace ash |
| 60 | 60 |
| 61 #endif // ASH_WM_RESIZE_SHADOW_CONTROLLER_H_ | 61 #endif // ASH_WM_RESIZE_SHADOW_CONTROLLER_H_ |
| OLD | NEW |