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_OPAQUE_BROWSER_FRAME_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
9 #include "chrome/browser/ui/view_ids.h" | 10 #include "chrome/browser/ui/view_ids.h" |
10 #include "chrome/browser/ui/views/frame/browser_frame.h" | 11 #include "chrome/browser/ui/views/frame/browser_frame.h" |
11 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 12 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
12 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view_layout_delegat
e.h" | 13 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view_layout_delegat
e.h" |
13 #include "chrome/browser/ui/views/tab_icon_view_model.h" | 14 #include "chrome/browser/ui/views/tab_icon_view_model.h" |
14 #include "ui/views/controls/button/button.h" | 15 #include "ui/views/controls/button/button.h" |
15 #include "ui/views/controls/button/menu_button_listener.h" | 16 #include "ui/views/controls/button/menu_button_listener.h" |
16 #include "ui/views/window/non_client_view.h" | 17 #include "ui/views/window/non_client_view.h" |
17 | 18 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 // Background painter for the window frame. | 162 // Background painter for the window frame. |
162 scoped_ptr<views::FrameBackground> frame_background_; | 163 scoped_ptr<views::FrameBackground> frame_background_; |
163 | 164 |
164 // Observer that handles platform dependent configuration. | 165 // Observer that handles platform dependent configuration. |
165 scoped_ptr<OpaqueBrowserFrameViewPlatformSpecific> platform_observer_; | 166 scoped_ptr<OpaqueBrowserFrameViewPlatformSpecific> platform_observer_; |
166 | 167 |
167 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameView); | 168 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameView); |
168 }; | 169 }; |
169 | 170 |
170 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 171 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
OLD | NEW |