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 UI_AURA_SHELL_SHADOW_CONTROLLER_H_ | 5 #ifndef ASH_WM_SHADOW_CONTROLLER_H_ |
6 #define UI_AURA_SHELL_SHADOW_CONTROLLER_H_ | 6 #define ASH_WM_SHADOW_CONTROLLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
14 #include "ui/aura/root_window_observer.h" | 14 #include "ui/aura/root_window_observer.h" |
15 #include "ui/aura/window_observer.h" | 15 #include "ui/aura/window_observer.h" |
16 #include "ui/aura_shell/aura_shell_export.h" | 16 #include "ui/aura_shell/aura_shell_export.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 void CreateShadowForWindow(aura::Window* window); | 79 void CreateShadowForWindow(aura::Window* window); |
80 | 80 |
81 WindowShadowMap window_shadows_; | 81 WindowShadowMap window_shadows_; |
82 | 82 |
83 DISALLOW_COPY_AND_ASSIGN(ShadowController); | 83 DISALLOW_COPY_AND_ASSIGN(ShadowController); |
84 }; | 84 }; |
85 | 85 |
86 } // namepsace aura_shell | 86 } // namepsace aura_shell |
87 } // namepsace internal | 87 } // namepsace internal |
88 | 88 |
89 #endif // UI_AURA_SHELL_SHADOW_CONTROLLER_H_ | 89 #endif // ASH_WM_SHADOW_CONTROLLER_H_ |
OLD | NEW |