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 CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "ui/aura_shell/window_frame.h" | |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 10 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
| 11 #include "ui/aura_shell/window_frame.h" |
| 12 #include "ui/views/widget/widget.h" |
12 #include "views/controls/button/button.h" | 13 #include "views/controls/button/button.h" |
13 #include "views/widget/widget.h" | |
14 | 14 |
15 class BrowserFrame; | 15 class BrowserFrame; |
16 class BrowserView; | 16 class BrowserView; |
17 class FrameBackground; | 17 class FrameBackground; |
18 class WindowControlButton; | 18 class WindowControlButton; |
19 | 19 |
20 class BrowserNonClientFrameViewAura : public BrowserNonClientFrameView, | 20 class BrowserNonClientFrameViewAura : public BrowserNonClientFrameView, |
21 public views::ButtonListener, | 21 public views::ButtonListener, |
22 public views::Widget::Observer, | 22 public views::Widget::Observer, |
23 public aura_shell::WindowFrame { | 23 public aura_shell::WindowFrame { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 int last_hittest_code_; | 84 int last_hittest_code_; |
85 WindowControlButton* maximize_button_; | 85 WindowControlButton* maximize_button_; |
86 WindowControlButton* close_button_; | 86 WindowControlButton* close_button_; |
87 FrameBackground* frame_background_; | 87 FrameBackground* frame_background_; |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAura); | 89 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAura); |
90 }; | 90 }; |
91 | 91 |
92 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ | 92 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ |
OLD | NEW |