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_SHADOW_H_ | 5 #ifndef ASH_WM_SHADOW_H_ |
6 #define ASH_WM_SHADOW_H_ | 6 #define ASH_WM_SHADOW_H_ |
7 #pragma once | |
8 | 7 |
9 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
10 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #include "ui/compositor/layer_animation_observer.h" | 11 #include "ui/compositor/layer_animation_observer.h" |
13 #include "ui/gfx/rect.h" | 12 #include "ui/gfx/rect.h" |
14 | 13 |
15 namespace ui { | 14 namespace ui { |
16 class Layer; | 15 class Layer; |
17 } // namespace ui | 16 } // namespace ui |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 // Bounds of the content that the shadow encloses. | 75 // Bounds of the content that the shadow encloses. |
77 gfx::Rect content_bounds_; | 76 gfx::Rect content_bounds_; |
78 | 77 |
79 DISALLOW_COPY_AND_ASSIGN(Shadow); | 78 DISALLOW_COPY_AND_ASSIGN(Shadow); |
80 }; | 79 }; |
81 | 80 |
82 } // namespace internal | 81 } // namespace internal |
83 } // namespace ash | 82 } // namespace ash |
84 | 83 |
85 #endif // ASH_WM_SHADOW_H_ | 84 #endif // ASH_WM_SHADOW_H_ |
OLD | NEW |