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_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "ui/aura/client/window_drag_drop_delegate.h" | 11 #include "ui/aura/client/window_drag_drop_delegate.h" |
12 #include "ui/aura/window_delegate.h" | 12 #include "ui/aura/window_delegate.h" |
13 #include "ui/base/events.h" | 13 #include "ui/base/events.h" |
| 14 #include "ui/views/views_export.h" |
14 #include "ui/views/widget/native_widget_private.h" | 15 #include "ui/views/widget/native_widget_private.h" |
15 #include "views/views_export.h" | |
16 | 16 |
17 namespace aura { | 17 namespace aura { |
18 class Window; | 18 class Window; |
19 } | 19 } |
20 namespace gfx { | 20 namespace gfx { |
21 class Font; | 21 class Font; |
22 } | 22 } |
23 | 23 |
24 namespace views { | 24 namespace views { |
25 | 25 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 scoped_ptr<DesktopObserverImpl> desktop_observer_; | 173 scoped_ptr<DesktopObserverImpl> desktop_observer_; |
174 | 174 |
175 scoped_ptr<DropHelper> drop_helper_; | 175 scoped_ptr<DropHelper> drop_helper_; |
176 | 176 |
177 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); | 177 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); |
178 }; | 178 }; |
179 | 179 |
180 } // namespace views | 180 } // namespace views |
181 | 181 |
182 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 182 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
OLD | NEW |