| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 bool should_restore_state) OVERRIDE; | 119 bool should_restore_state) OVERRIDE; |
| 120 virtual void FocusToolbar() OVERRIDE; | 120 virtual void FocusToolbar() OVERRIDE; |
| 121 virtual void FocusAppMenu() OVERRIDE; | 121 virtual void FocusAppMenu() OVERRIDE; |
| 122 virtual void FocusBookmarksToolbar() OVERRIDE; | 122 virtual void FocusBookmarksToolbar() OVERRIDE; |
| 123 virtual void FocusChromeOSStatus() OVERRIDE; | 123 virtual void FocusChromeOSStatus() OVERRIDE; |
| 124 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 124 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
| 125 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 125 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 126 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 126 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 127 virtual bool IsTabStripEditable() const OVERRIDE; | 127 virtual bool IsTabStripEditable() const OVERRIDE; |
| 128 virtual bool IsToolbarVisible() const OVERRIDE; | 128 virtual bool IsToolbarVisible() const OVERRIDE; |
| 129 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 129 virtual bool IsPanel() const OVERRIDE; | 130 virtual bool IsPanel() const OVERRIDE; |
| 130 virtual void DisableInactiveFrame() OVERRIDE; | 131 virtual void DisableInactiveFrame() OVERRIDE; |
| 131 virtual void ConfirmSetDefaultSearchProvider( | 132 virtual void ConfirmSetDefaultSearchProvider( |
| 132 content::WebContents* web_contents, | 133 content::WebContents* web_contents, |
| 133 TemplateURL* template_url, | 134 TemplateURL* template_url, |
| 134 Profile* profile) OVERRIDE; | 135 Profile* profile) OVERRIDE; |
| 135 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 136 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 136 Profile* profile) OVERRIDE; | 137 Profile* profile) OVERRIDE; |
| 137 virtual void ToggleBookmarkBar() OVERRIDE; | 138 virtual void ToggleBookmarkBar() OVERRIDE; |
| 138 virtual void ShowAboutChromeDialog() OVERRIDE; | 139 virtual void ShowAboutChromeDialog() OVERRIDE; |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 316 |
| 316 // Indicates whether the panel app icon is visible in the taskbar. | 317 // Indicates whether the panel app icon is visible in the taskbar. |
| 317 bool app_icon_visible_; | 318 bool app_icon_visible_; |
| 318 | 319 |
| 319 content::NotificationRegistrar registrar_; | 320 content::NotificationRegistrar registrar_; |
| 320 | 321 |
| 321 DISALLOW_COPY_AND_ASSIGN(Panel); | 322 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 322 }; | 323 }; |
| 323 | 324 |
| 324 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 325 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |