| 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 VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ | 5 #ifndef VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
| 6 #define VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ | 6 #define VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <atlbase.h> | 9 #include <atlbase.h> |
| 10 #include <atlapp.h> | 10 #include <atlapp.h> |
| 11 #include <atlcrack.h> | 11 #include <atlcrack.h> |
| 12 #include <atlmisc.h> | 12 #include <atlmisc.h> |
| 13 | 13 |
| 14 #include <string> | 14 #include <string> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| 19 #include "base/memory/scoped_vector.h" | 19 #include "base/memory/scoped_vector.h" |
| 20 #include "base/memory/weak_ptr.h" | 20 #include "base/memory/weak_ptr.h" |
| 21 #include "base/message_loop.h" | 21 #include "base/message_loop.h" |
| 22 #include "base/win/scoped_comptr.h" | 22 #include "base/win/scoped_comptr.h" |
| 23 #include "base/win/win_util.h" | 23 #include "base/win/win_util.h" |
| 24 #include "ui/base/win/window_impl.h" | 24 #include "ui/base/win/window_impl.h" |
| 25 #include "ui/gfx/compositor/compositor.h" | 25 #include "ui/gfx/compositor/compositor.h" |
| 26 #include "views/focus/focus_manager.h" | 26 #include "ui/views/focus/focus_manager.h" |
| 27 #include "views/layout/layout_manager.h" | 27 #include "ui/views/layout/layout_manager.h" |
| 28 #include "views/widget/native_widget_private.h" | 28 #include "views/widget/native_widget_private.h" |
| 29 | 29 |
| 30 namespace ui { | 30 namespace ui { |
| 31 class Compositor; | 31 class Compositor; |
| 32 class ViewProp; | 32 class ViewProp; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace gfx { | 35 namespace gfx { |
| 36 class CanvasSkia; | 36 class CanvasSkia; |
| 37 class Font; | 37 class Font; |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 // rather than asking the Widget for the non_client_view so that we know at | 655 // rather than asking the Widget for the non_client_view so that we know at |
| 656 // Init time, before the Widget has created the NonClientView. | 656 // Init time, before the Widget has created the NonClientView. |
| 657 bool has_non_client_view_; | 657 bool has_non_client_view_; |
| 658 | 658 |
| 659 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); | 659 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); |
| 660 }; | 660 }; |
| 661 | 661 |
| 662 } // namespace views | 662 } // namespace views |
| 663 | 663 |
| 664 #endif // VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ | 664 #endif // VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
| OLD | NEW |