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

Side by Side Diff: chrome/browser/ui/panels/panel_browser_window_cocoa.h

Issue 7633034: Use Titlebar instead of TitleBar consistently in panels code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review feedback. Created 9 years, 4 months 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
OLDNEW
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_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_
6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 #include "base/gtest_prod_util.h" 9 #include "base/gtest_prod_util.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 14 matching lines...) Expand all
25 const gfx::Rect& bounds); 25 const gfx::Rect& bounds);
26 virtual ~PanelBrowserWindowCocoa(); 26 virtual ~PanelBrowserWindowCocoa();
27 27
28 // Overridden from NativePanel 28 // Overridden from NativePanel
29 virtual void ShowPanel() OVERRIDE; 29 virtual void ShowPanel() OVERRIDE;
30 virtual void ShowPanelInactive() OVERRIDE; 30 virtual void ShowPanelInactive() OVERRIDE;
31 virtual gfx::Rect GetPanelBounds() const OVERRIDE; 31 virtual gfx::Rect GetPanelBounds() const OVERRIDE;
32 virtual void SetPanelBounds(const gfx::Rect& bounds) OVERRIDE; 32 virtual void SetPanelBounds(const gfx::Rect& bounds) OVERRIDE;
33 virtual void OnPanelExpansionStateChanged( 33 virtual void OnPanelExpansionStateChanged(
34 Panel::ExpansionState expansion_state) OVERRIDE; 34 Panel::ExpansionState expansion_state) OVERRIDE;
35 virtual bool ShouldBringUpPanelTitleBar(int mouse_x, 35 virtual bool ShouldBringUpPanelTitlebar(int mouse_x,
36 int mouse_y) const OVERRIDE; 36 int mouse_y) const OVERRIDE;
37 virtual void ClosePanel() OVERRIDE; 37 virtual void ClosePanel() OVERRIDE;
38 virtual void ActivatePanel() OVERRIDE; 38 virtual void ActivatePanel() OVERRIDE;
39 virtual void DeactivatePanel() OVERRIDE; 39 virtual void DeactivatePanel() OVERRIDE;
40 virtual bool IsPanelActive() const OVERRIDE; 40 virtual bool IsPanelActive() const OVERRIDE;
41 virtual gfx::NativeWindow GetNativePanelHandle() OVERRIDE; 41 virtual gfx::NativeWindow GetNativePanelHandle() OVERRIDE;
42 virtual void UpdatePanelTitleBar() OVERRIDE; 42 virtual void UpdatePanelTitleBar() OVERRIDE;
43 virtual void ShowTaskManagerForPanel() OVERRIDE; 43 virtual void ShowTaskManagerForPanel() OVERRIDE;
44 virtual FindBar* CreatePanelFindBar() OVERRIDE; 44 virtual FindBar* CreatePanelFindBar() OVERRIDE;
45 virtual void NotifyPanelOnUserChangedTheme() OVERRIDE; 45 virtual void NotifyPanelOnUserChangedTheme() OVERRIDE;
(...skipping 19 matching lines...) Expand all
65 scoped_ptr<Panel> panel_; 65 scoped_ptr<Panel> panel_;
66 gfx::Rect bounds_; 66 gfx::Rect bounds_;
67 PanelWindowControllerCocoa* controller_; // Weak, owns us. 67 PanelWindowControllerCocoa* controller_; // Weak, owns us.
68 bool is_shown_; // Panel is hidden on creation, Show() changes that forever. 68 bool is_shown_; // Panel is hidden on creation, Show() changes that forever.
69 bool has_find_bar_; // Find bar should only be created once per panel. 69 bool has_find_bar_; // Find bar should only be created once per panel.
70 70
71 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowCocoa); 71 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindowCocoa);
72 }; 72 };
73 73
74 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_ 74 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_COCOA_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel_browser_view_browsertest.cc ('k') | chrome/browser/ui/panels/panel_browser_window_cocoa.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698