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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 virtual void ShowAboutChromeDialog() OVERRIDE; | 117 virtual void ShowAboutChromeDialog() OVERRIDE; |
118 virtual void ShowUpdateChromeDialog() OVERRIDE; | 118 virtual void ShowUpdateChromeDialog() OVERRIDE; |
119 virtual void ShowTaskManager() OVERRIDE; | 119 virtual void ShowTaskManager() OVERRIDE; |
120 virtual void ShowBackgroundPages() OVERRIDE; | 120 virtual void ShowBackgroundPages() OVERRIDE; |
121 virtual void ShowBookmarkBubble( | 121 virtual void ShowBookmarkBubble( |
122 const GURL& url, bool already_bookmarked) OVERRIDE; | 122 const GURL& url, bool already_bookmarked) OVERRIDE; |
123 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 123 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
124 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 124 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
125 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; | 125 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; |
126 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; | 126 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; |
127 virtual void ShowThemeInstallBubble() OVERRIDE; | |
128 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 127 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
129 virtual void UserChangedTheme() OVERRIDE; | 128 virtual void UserChangedTheme() OVERRIDE; |
130 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 129 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
131 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; | 130 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; |
132 virtual void ShowPageInfo(Profile* profile, | 131 virtual void ShowPageInfo(Profile* profile, |
133 const GURL& url, | 132 const GURL& url, |
134 const NavigationEntry::SSLStatus& ssl, | 133 const NavigationEntry::SSLStatus& ssl, |
135 bool show_history) OVERRIDE; | 134 bool show_history) OVERRIDE; |
136 virtual void ShowAppMenu() OVERRIDE; | 135 virtual void ShowAppMenu() OVERRIDE; |
137 virtual bool PreHandleKeyboardEvent( | 136 virtual bool PreHandleKeyboardEvent( |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 // Stores the full height of the panel so we can restore it after it's | 238 // Stores the full height of the panel so we can restore it after it's |
240 // been minimized. | 239 // been minimized. |
241 int restored_height_; | 240 int restored_height_; |
242 | 241 |
243 content::NotificationRegistrar registrar_; | 242 content::NotificationRegistrar registrar_; |
244 | 243 |
245 DISALLOW_COPY_AND_ASSIGN(Panel); | 244 DISALLOW_COPY_AND_ASSIGN(Panel); |
246 }; | 245 }; |
247 | 246 |
248 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 247 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
OLD | NEW |