| 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_CUSTOM_FRAME_VIEW_ASH_H_ | 5 #ifndef ASH_WM_CUSTOM_FRAME_VIEW_ASH_H_ |
| 6 #define ASH_WM_CUSTOM_FRAME_VIEW_ASH_H_ | 6 #define ASH_WM_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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 77 |
| 79 // Updates the hittest bounds overrides based on the window state type. | 78 // Updates the hittest bounds overrides based on the window state type. |
| 80 scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_; | 79 scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_; |
| 81 | 80 |
| 82 DISALLOW_COPY_AND_ASSIGN(CustomFrameViewAsh); | 81 DISALLOW_COPY_AND_ASSIGN(CustomFrameViewAsh); |
| 83 }; | 82 }; |
| 84 | 83 |
| 85 } // namespace ash | 84 } // namespace ash |
| 86 | 85 |
| 87 #endif // ASH_WM_CUSTOM_FRAME_VIEW_ASH_H_ | 86 #endif // ASH_WM_CUSTOM_FRAME_VIEW_ASH_H_ |
| OLD | NEW |