| 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_H_ | 5 #ifndef ASH_WM_RESIZE_SHADOW_H_ |
| 6 #define ASH_WM_RESIZE_SHADOW_H_ | 6 #define ASH_WM_RESIZE_SHADOW_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 | 10 |
| 11 namespace aura { | 11 namespace aura { |
| 12 class Window; | 12 class Window; |
| 13 } | 13 } |
| 14 namespace gfx { | 14 namespace gfx { |
| 15 class Rect; | 15 class Rect; |
| 16 } | 16 } |
| 17 namespace ui { | 17 namespace ui { |
| 18 class Layer; | 18 class Layer; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // Hit test value from last call to ShowForHitTest(). Used to prevent | 55 // Hit test value from last call to ShowForHitTest(). Used to prevent |
| 56 // repeatedly triggering the same animations for the same hit. | 56 // repeatedly triggering the same animations for the same hit. |
| 57 int last_hit_test_; | 57 int last_hit_test_; |
| 58 | 58 |
| 59 DISALLOW_COPY_AND_ASSIGN(ResizeShadow); | 59 DISALLOW_COPY_AND_ASSIGN(ResizeShadow); |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace ash | 62 } // namespace ash |
| 63 | 63 |
| 64 #endif // ASH_WM_RESIZE_SHADOW_H_ | 64 #endif // ASH_WM_RESIZE_SHADOW_H_ |
| OLD | NEW |