| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 Profile* profile) OVERRIDE; | 137 Profile* profile) OVERRIDE; |
| 138 virtual void ToggleBookmarkBar() OVERRIDE; | 138 virtual void ToggleBookmarkBar() OVERRIDE; |
| 139 virtual void ShowAboutChromeDialog() OVERRIDE; | 139 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 140 virtual void ShowUpdateChromeDialog() OVERRIDE; | 140 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 141 virtual void ShowTaskManager() OVERRIDE; | 141 virtual void ShowTaskManager() OVERRIDE; |
| 142 virtual void ShowBackgroundPages() OVERRIDE; | 142 virtual void ShowBackgroundPages() OVERRIDE; |
| 143 virtual void ShowBookmarkBubble( | 143 virtual void ShowBookmarkBubble( |
| 144 const GURL& url, bool already_bookmarked) OVERRIDE; | 144 const GURL& url, bool already_bookmarked) OVERRIDE; |
| 145 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 145 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 146 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 146 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 147 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; | 147 virtual void ShowTabModalDialog(TabModalDialogDelegate* delegate, |
| 148 TabContents* tab_contents) OVERRIDE; |
| 148 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; | 149 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; |
| 149 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 150 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 150 virtual void UserChangedTheme() OVERRIDE; | 151 virtual void UserChangedTheme() OVERRIDE; |
| 151 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 152 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 152 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; | 153 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; |
| 153 virtual void ShowPageInfo(Profile* profile, | 154 virtual void ShowPageInfo(Profile* profile, |
| 154 const GURL& url, | 155 const GURL& url, |
| 155 const NavigationEntry::SSLStatus& ssl, | 156 const NavigationEntry::SSLStatus& ssl, |
| 156 bool show_history) OVERRIDE; | 157 bool show_history) OVERRIDE; |
| 157 virtual void ShowAppMenu() OVERRIDE; | 158 virtual void ShowAppMenu() OVERRIDE; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 NativePanel* native_panel_; // Weak, owns us. | 292 NativePanel* native_panel_; // Weak, owns us. |
| 292 | 293 |
| 293 ExpansionState expansion_state_; | 294 ExpansionState expansion_state_; |
| 294 | 295 |
| 295 content::NotificationRegistrar registrar_; | 296 content::NotificationRegistrar registrar_; |
| 296 | 297 |
| 297 DISALLOW_COPY_AND_ASSIGN(Panel); | 298 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 298 }; | 299 }; |
| 299 | 300 |
| 300 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 301 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |