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_PANELS_PANEL_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_ |
6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/ui/browser_window.h" | 9 #include "chrome/browser/ui/browser_window.h" |
10 | 10 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 virtual bool IsFullscreen() const OVERRIDE; | 124 virtual bool IsFullscreen() const OVERRIDE; |
125 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; | 125 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; |
126 virtual LocationBar* GetLocationBar() const OVERRIDE; | 126 virtual LocationBar* GetLocationBar() const OVERRIDE; |
127 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 127 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
128 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; | 128 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; |
129 virtual void UpdateToolbar(TabContentsWrapper* contents, | 129 virtual void UpdateToolbar(TabContentsWrapper* contents, |
130 bool should_restore_state) OVERRIDE; | 130 bool should_restore_state) OVERRIDE; |
131 virtual void FocusToolbar() OVERRIDE; | 131 virtual void FocusToolbar() OVERRIDE; |
132 virtual void FocusAppMenu() OVERRIDE; | 132 virtual void FocusAppMenu() OVERRIDE; |
133 virtual void FocusBookmarksToolbar() OVERRIDE; | 133 virtual void FocusBookmarksToolbar() OVERRIDE; |
134 virtual void FocusChromeOSStatus() OVERRIDE; | |
135 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 134 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
136 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 135 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
137 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 136 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
138 virtual bool IsTabStripEditable() const OVERRIDE; | 137 virtual bool IsTabStripEditable() const OVERRIDE; |
139 virtual bool IsToolbarVisible() const OVERRIDE; | 138 virtual bool IsToolbarVisible() const OVERRIDE; |
140 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 139 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
141 virtual bool IsPanel() const OVERRIDE; | 140 virtual bool IsPanel() const OVERRIDE; |
142 virtual void DisableInactiveFrame() OVERRIDE; | 141 virtual void DisableInactiveFrame() OVERRIDE; |
143 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 142 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
144 Profile* profile) OVERRIDE; | 143 Profile* profile) OVERRIDE; |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 AttentionMode attention_mode_; | 374 AttentionMode attention_mode_; |
376 | 375 |
377 ExpansionState expansion_state_; | 376 ExpansionState expansion_state_; |
378 | 377 |
379 content::NotificationRegistrar registrar_; | 378 content::NotificationRegistrar registrar_; |
380 | 379 |
381 DISALLOW_COPY_AND_ASSIGN(Panel); | 380 DISALLOW_COPY_AND_ASSIGN(Panel); |
382 }; | 381 }; |
383 | 382 |
384 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 383 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
OLD | NEW |