| 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 ToggleBookmarkBar() OVERRIDE; | 96 virtual void ToggleBookmarkBar() OVERRIDE; |
| 97 virtual void ShowAboutChromeDialog() OVERRIDE; | 97 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 98 virtual void ShowUpdateChromeDialog() OVERRIDE; | 98 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 99 virtual void ShowTaskManager() OVERRIDE; | 99 virtual void ShowTaskManager() OVERRIDE; |
| 100 virtual void ShowBackgroundPages() OVERRIDE; | 100 virtual void ShowBackgroundPages() OVERRIDE; |
| 101 virtual void ShowBookmarkBubble( | 101 virtual void ShowBookmarkBubble( |
| 102 const GURL& url, bool already_bookmarked) OVERRIDE; | 102 const GURL& url, bool already_bookmarked) OVERRIDE; |
| 103 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 103 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 104 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 104 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 105 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; | 105 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; |
| 106 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents) OVERRIDE; | 106 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; |
| 107 virtual void ShowThemeInstallBubble() OVERRIDE; | 107 virtual void ShowThemeInstallBubble() OVERRIDE; |
| 108 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 108 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 109 virtual gfx::NativeWindow ShowHTMLDialog( | 109 virtual gfx::NativeWindow ShowHTMLDialog( |
| 110 HtmlDialogUIDelegate* delegate, | 110 HtmlDialogUIDelegate* delegate, |
| 111 gfx::NativeWindow parent_window) OVERRIDE; | 111 gfx::NativeWindow parent_window) OVERRIDE; |
| 112 virtual void UserChangedTheme() OVERRIDE; | 112 virtual void UserChangedTheme() OVERRIDE; |
| 113 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 113 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 114 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; | 114 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; |
| 115 virtual void ShowPageInfo(Profile* profile, | 115 virtual void ShowPageInfo(Profile* profile, |
| 116 const GURL& url, | 116 const GURL& url, |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 // Platform specifc implementation for panels. It'd be one of | 182 // Platform specifc implementation for panels. It'd be one of |
| 183 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. | 183 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. |
| 184 NativePanel* native_panel_; // Weak, owns us. | 184 NativePanel* native_panel_; // Weak, owns us. |
| 185 | 185 |
| 186 ExpansionState expansion_state_; | 186 ExpansionState expansion_state_; |
| 187 | 187 |
| 188 DISALLOW_COPY_AND_ASSIGN(Panel); | 188 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 189 }; | 189 }; |
| 190 | 190 |
| 191 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 191 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |