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 CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "ash/shell_observer.h" | 10 #include "ash/common/shell_observer.h" |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 13 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
14 #include "chrome/browser/ui/views/tab_icon_view_model.h" | 14 #include "chrome/browser/ui/views/tab_icon_view_model.h" |
15 | 15 |
16 class TabIconView; | 16 class TabIconView; |
17 class WebAppLeftHeaderView; | 17 class WebAppLeftHeaderView; |
18 | 18 |
19 namespace ash { | 19 namespace ash { |
20 class FrameBorderHitTestController; | 20 class FrameBorderHitTestController; |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 std::unique_ptr<ash::HeaderPainter> header_painter_; | 140 std::unique_ptr<ash::HeaderPainter> header_painter_; |
141 | 141 |
142 // Updates the hittest bounds overrides based on the window show type. | 142 // Updates the hittest bounds overrides based on the window show type. |
143 std::unique_ptr<ash::FrameBorderHitTestController> | 143 std::unique_ptr<ash::FrameBorderHitTestController> |
144 frame_border_hit_test_controller_; | 144 frame_border_hit_test_controller_; |
145 | 145 |
146 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh); | 146 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh); |
147 }; | 147 }; |
148 | 148 |
149 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 149 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
OLD | NEW |