Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: chrome/browser/ui/views/frame/desktop_browser_frame_aura.h

Issue 11316277: Fix linux_aura clang build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_DESKTOP_BROWSER_FRAME_AURA_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_DESKTOP_BROWSER_FRAME_AURA_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_DESKTOP_BROWSER_FRAME_AURA_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_DESKTOP_BROWSER_FRAME_AURA_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/ui/views/frame/native_browser_frame.h" 10 #include "chrome/browser/ui/views/frame/native_browser_frame.h"
(...skipping 22 matching lines...) Expand all
33 public: 33 public:
34 DesktopBrowserFrameAura(BrowserFrame* browser_frame, 34 DesktopBrowserFrameAura(BrowserFrame* browser_frame,
35 BrowserView* browser_view); 35 BrowserView* browser_view);
36 36
37 BrowserView* browser_view() const { return browser_view_; } 37 BrowserView* browser_view() const { return browser_view_; }
38 38
39 protected: 39 protected:
40 // Overridden from views::DesktopNativeWidgetAura: 40 // Overridden from views::DesktopNativeWidgetAura:
41 virtual void InitNativeWidget( 41 virtual void InitNativeWidget(
42 const views::Widget::InitParams& params) OVERRIDE; 42 const views::Widget::InitParams& params) OVERRIDE;
43 void OnWindowDestroying() OVERRIDE; 43 virtual void OnWindowDestroying() OVERRIDE;
44 44
45 // Overridden from NativeBrowserFrame: 45 // Overridden from NativeBrowserFrame:
46 virtual views::NativeWidget* AsNativeWidget() OVERRIDE; 46 virtual views::NativeWidget* AsNativeWidget() OVERRIDE;
47 virtual const views::NativeWidget* AsNativeWidget() const OVERRIDE; 47 virtual const views::NativeWidget* AsNativeWidget() const OVERRIDE;
48 virtual void InitSystemContextMenu() OVERRIDE; 48 virtual void InitSystemContextMenu() OVERRIDE;
49 virtual int GetMinimizeButtonOffset() const OVERRIDE; 49 virtual int GetMinimizeButtonOffset() const OVERRIDE;
50 virtual void TabStripDisplayModeChanged() OVERRIDE; 50 virtual void TabStripDisplayModeChanged() OVERRIDE;
51 51
52 private: 52 private:
53 virtual ~DesktopBrowserFrameAura(); 53 virtual ~DesktopBrowserFrameAura();
54 54
55 // The BrowserView is our ClientView. This is a pointer to it. 55 // The BrowserView is our ClientView. This is a pointer to it.
56 BrowserView* browser_view_; 56 BrowserView* browser_view_;
57 BrowserFrame* browser_frame_; 57 BrowserFrame* browser_frame_;
58 58
59 // Owned by the RootWindow. 59 // Owned by the RootWindow.
60 BrowserDesktopRootWindowHost* browser_desktop_root_window_host_; 60 BrowserDesktopRootWindowHost* browser_desktop_root_window_host_;
61 61
62 // System menu. 62 // System menu.
63 scoped_ptr<views::MenuRunner> menu_runner_; 63 scoped_ptr<views::MenuRunner> menu_runner_;
64 64
65 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; 65 scoped_ptr<views::corewm::VisibilityController> visibility_controller_;
66 66
67 DISALLOW_COPY_AND_ASSIGN(DesktopBrowserFrameAura); 67 DISALLOW_COPY_AND_ASSIGN(DesktopBrowserFrameAura);
68 }; 68 };
69 69
70 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_DESKTOP_BROWSER_FRAME_AURA_H_ 70 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_DESKTOP_BROWSER_FRAME_AURA_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698