| OLD | NEW |
| 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_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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 virtual void FocusToolbar() OVERRIDE; | 96 virtual void FocusToolbar() OVERRIDE; |
| 97 virtual void FocusAppMenu() OVERRIDE; | 97 virtual void FocusAppMenu() OVERRIDE; |
| 98 virtual void FocusBookmarksToolbar() OVERRIDE; | 98 virtual void FocusBookmarksToolbar() OVERRIDE; |
| 99 virtual void FocusChromeOSStatus() OVERRIDE; | 99 virtual void FocusChromeOSStatus() OVERRIDE; |
| 100 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 100 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
| 101 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 101 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 102 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 102 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 103 virtual bool IsTabStripEditable() const OVERRIDE; | 103 virtual bool IsTabStripEditable() const OVERRIDE; |
| 104 virtual bool IsToolbarVisible() const OVERRIDE; | 104 virtual bool IsToolbarVisible() const OVERRIDE; |
| 105 virtual void DisableInactiveFrame() OVERRIDE; | 105 virtual void DisableInactiveFrame() OVERRIDE; |
| 106 virtual void ConfirmSetDefaultSearchProvider( | 106 virtual void ConfirmSetDefaultSearchProvider(TabContents* tab_contents, |
| 107 TabContents* tab_contents, | 107 TemplateURL* template_url, |
| 108 TemplateURL* template_url, | 108 Profile* profile) OVERRIDE; |
| 109 TemplateURLService* template_url_service) OVERRIDE; | |
| 110 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 109 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 111 Profile* profile) OVERRIDE; | 110 Profile* profile) OVERRIDE; |
| 112 virtual void ToggleBookmarkBar() OVERRIDE; | 111 virtual void ToggleBookmarkBar() OVERRIDE; |
| 113 virtual void ShowAboutChromeDialog() OVERRIDE; | 112 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 114 virtual void ShowUpdateChromeDialog() OVERRIDE; | 113 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 115 virtual void ShowTaskManager() OVERRIDE; | 114 virtual void ShowTaskManager() OVERRIDE; |
| 116 virtual void ShowBackgroundPages() OVERRIDE; | 115 virtual void ShowBackgroundPages() OVERRIDE; |
| 117 virtual void ShowBookmarkBubble( | 116 virtual void ShowBookmarkBubble( |
| 118 const GURL& url, bool already_bookmarked) OVERRIDE; | 117 const GURL& url, bool already_bookmarked) OVERRIDE; |
| 119 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 118 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 // Stores the full height of the panel so we can restore it after it's | 230 // Stores the full height of the panel so we can restore it after it's |
| 232 // been minimized. | 231 // been minimized. |
| 233 int restored_height_; | 232 int restored_height_; |
| 234 | 233 |
| 235 NotificationRegistrar registrar_; | 234 NotificationRegistrar registrar_; |
| 236 | 235 |
| 237 DISALLOW_COPY_AND_ASSIGN(Panel); | 236 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 238 }; | 237 }; |
| 239 | 238 |
| 240 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 239 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |