| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 Profile* profile) OVERRIDE; | 133 Profile* profile) OVERRIDE; |
| 134 virtual void ToggleBookmarkBar() OVERRIDE; | 134 virtual void ToggleBookmarkBar() OVERRIDE; |
| 135 virtual void ShowAboutChromeDialog() OVERRIDE; | 135 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 136 virtual void ShowUpdateChromeDialog() OVERRIDE; | 136 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 137 virtual void ShowTaskManager() OVERRIDE; | 137 virtual void ShowTaskManager() OVERRIDE; |
| 138 virtual void ShowBackgroundPages() OVERRIDE; | 138 virtual void ShowBackgroundPages() OVERRIDE; |
| 139 virtual void ShowBookmarkBubble( | 139 virtual void ShowBookmarkBubble( |
| 140 const GURL& url, bool already_bookmarked) OVERRIDE; | 140 const GURL& url, bool already_bookmarked) OVERRIDE; |
| 141 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 141 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 142 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 142 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 143 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; | |
| 144 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; | 143 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; |
| 145 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 144 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 146 virtual void UserChangedTheme() OVERRIDE; | 145 virtual void UserChangedTheme() OVERRIDE; |
| 147 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 146 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 148 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; | 147 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; |
| 149 virtual void ShowPageInfo(Profile* profile, | 148 virtual void ShowPageInfo(Profile* profile, |
| 150 const GURL& url, | 149 const GURL& url, |
| 151 const NavigationEntry::SSLStatus& ssl, | 150 const NavigationEntry::SSLStatus& ssl, |
| 152 bool show_history) OVERRIDE; | 151 bool show_history) OVERRIDE; |
| 153 virtual void ShowAppMenu() OVERRIDE; | 152 virtual void ShowAppMenu() OVERRIDE; |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 310 |
| 312 // Indicates whether the panel app icon is visible in the taskbar. | 311 // Indicates whether the panel app icon is visible in the taskbar. |
| 313 bool app_icon_visible_; | 312 bool app_icon_visible_; |
| 314 | 313 |
| 315 content::NotificationRegistrar registrar_; | 314 content::NotificationRegistrar registrar_; |
| 316 | 315 |
| 317 DISALLOW_COPY_AND_ASSIGN(Panel); | 316 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 318 }; | 317 }; |
| 319 | 318 |
| 320 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 319 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |