| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 virtual void DisableInactiveFrame() OVERRIDE; | 129 virtual void DisableInactiveFrame() OVERRIDE; |
| 130 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 130 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 131 Profile* profile) OVERRIDE; | 131 Profile* profile) OVERRIDE; |
| 132 virtual void ToggleBookmarkBar() OVERRIDE; | 132 virtual void ToggleBookmarkBar() OVERRIDE; |
| 133 virtual void ShowAboutChromeDialog() OVERRIDE; | 133 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 134 virtual void ShowUpdateChromeDialog() OVERRIDE; | 134 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 135 virtual void ShowTaskManager() OVERRIDE; | 135 virtual void ShowTaskManager() OVERRIDE; |
| 136 virtual void ShowBackgroundPages() OVERRIDE; | 136 virtual void ShowBackgroundPages() OVERRIDE; |
| 137 virtual void ShowBookmarkBubble( | 137 virtual void ShowBookmarkBubble( |
| 138 const GURL& url, bool already_bookmarked) OVERRIDE; | 138 const GURL& url, bool already_bookmarked) OVERRIDE; |
| 139 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 139 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 140 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 140 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 141 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 141 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 142 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 142 virtual void UserChangedTheme() OVERRIDE; | 143 virtual void UserChangedTheme() OVERRIDE; |
| 143 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 144 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 144 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 145 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 145 virtual void ShowPageInfo(Profile* profile, | 146 virtual void ShowPageInfo(Profile* profile, |
| 146 const GURL& url, | 147 const GURL& url, |
| 147 const content::SSLStatus& ssl, | 148 const content::SSLStatus& ssl, |
| 148 bool show_history) OVERRIDE; | 149 bool show_history) OVERRIDE; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 | 322 |
| 322 // Indicates whether the panel app icon is visible in the taskbar. | 323 // Indicates whether the panel app icon is visible in the taskbar. |
| 323 bool app_icon_visible_; | 324 bool app_icon_visible_; |
| 324 | 325 |
| 325 content::NotificationRegistrar registrar_; | 326 content::NotificationRegistrar registrar_; |
| 326 | 327 |
| 327 DISALLOW_COPY_AND_ASSIGN(Panel); | 328 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 328 }; | 329 }; |
| 329 | 330 |
| 330 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 331 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |