OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COMMON_FRAME_HEADER_VIEW_H_ | 5 #ifndef ASH_FRAME_HEADER_VIEW_H_ |
6 #define ASH_COMMON_FRAME_HEADER_VIEW_H_ | 6 #define ASH_FRAME_HEADER_VIEW_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
11 #include "ash/common/shell_observer.h" | 11 #include "ash/common/shell_observer.h" |
12 #include "ash/shared/immersive_fullscreen_controller_delegate.h" | 12 #include "ash/shared/immersive_fullscreen_controller_delegate.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "third_party/skia/include/core/SkColor.h" | 14 #include "third_party/skia/include/core/SkColor.h" |
15 #include "ui/views/view.h" | 15 #include "ui/views/view.h" |
16 | 16 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 // Has this instance been set as the ImmersiveFullscreenControllerDelegate? | 106 // Has this instance been set as the ImmersiveFullscreenControllerDelegate? |
107 bool is_immersive_delegate_ = true; | 107 bool is_immersive_delegate_ = true; |
108 | 108 |
109 bool did_layout_ = false; | 109 bool did_layout_ = false; |
110 | 110 |
111 DISALLOW_COPY_AND_ASSIGN(HeaderView); | 111 DISALLOW_COPY_AND_ASSIGN(HeaderView); |
112 }; | 112 }; |
113 | 113 |
114 } // namespace ash | 114 } // namespace ash |
115 | 115 |
116 #endif // ASH_COMMON_FRAME_HEADER_VIEW_H_ | 116 #endif // ASH_FRAME_HEADER_VIEW_H_ |
OLD | NEW |