OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_LINUX_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
10 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view_platform_speci
fic.h" | 10 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view_platform_speci
fic.h" |
11 #include "ui/views/linux_ui/window_button_order_observer.h" | 11 #include "ui/views/linux_ui/window_button_order_observer.h" |
12 | 12 |
13 class ThemeService; | 13 class ThemeService; |
14 | 14 |
15 // Plumbs button change events from views::LinuxUI to | 15 // Plumbs button change events from views::LinuxUI to |
16 // OpaqueBrowserFrameViewLayout. | 16 // OpaqueBrowserFrameViewLayout. |
17 class OpaqueBrowserFrameViewLinux | 17 class OpaqueBrowserFrameViewLinux |
18 : public OpaqueBrowserFrameViewPlatformSpecific, | 18 : public OpaqueBrowserFrameViewPlatformSpecific, |
19 public views::WindowButtonOrderObserver { | 19 public views::WindowButtonOrderObserver { |
(...skipping 15 matching lines...) Expand all Loading... |
35 private: | 35 private: |
36 OpaqueBrowserFrameView* view_; | 36 OpaqueBrowserFrameView* view_; |
37 OpaqueBrowserFrameViewLayout* layout_; | 37 OpaqueBrowserFrameViewLayout* layout_; |
38 | 38 |
39 ThemeService* theme_service_; | 39 ThemeService* theme_service_; |
40 | 40 |
41 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameViewLinux); | 41 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameViewLinux); |
42 }; | 42 }; |
43 | 43 |
44 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ | 44 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LINUX_H_ |
OLD | NEW |