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_FRAME_CUSTOM_FRAME_VIEW_ASH_H_ | 5 #ifndef ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_ |
6 #define ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_ | 6 #define ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "ui/views/window/non_client_view.h" | 10 #include "ui/views/window/non_client_view.h" |
11 | 11 |
12 namespace ash { | 12 namespace ash { |
13 class FrameBorderHitTestController; | 13 class FrameBorderHitTestController; |
14 class HeaderPainter; | |
15 class ImmersiveFullscreenController; | 14 class ImmersiveFullscreenController; |
16 } | 15 } |
17 namespace views { | 16 namespace views { |
18 class Widget; | 17 class Widget; |
19 } | 18 } |
20 | 19 |
21 namespace ash { | 20 namespace ash { |
22 | 21 |
23 // A NonClientFrameView used for packaged apps, dialogs and other non-browser | 22 // A NonClientFrameView used for packaged apps, dialogs and other non-browser |
24 // windows. It supports immersive fullscreen. When in immersive fullscreen, the | 23 // windows. It supports immersive fullscreen. When in immersive fullscreen, the |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 | 78 |
80 // Updates the hittest bounds overrides based on the window state type. | 79 // Updates the hittest bounds overrides based on the window state type. |
81 scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_; | 80 scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_; |
82 | 81 |
83 DISALLOW_COPY_AND_ASSIGN(CustomFrameViewAsh); | 82 DISALLOW_COPY_AND_ASSIGN(CustomFrameViewAsh); |
84 }; | 83 }; |
85 | 84 |
86 } // namespace ash | 85 } // namespace ash |
87 | 86 |
88 #endif // ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_ | 87 #endif // ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_ |
OLD | NEW |