| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 142 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 143 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; | 143 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; |
| 144 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 144 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 145 virtual void UserChangedTheme() OVERRIDE; | 145 virtual void UserChangedTheme() OVERRIDE; |
| 146 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 146 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 147 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 147 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 148 virtual void ShowPageInfo(Profile* profile, | 148 virtual void ShowPageInfo(Profile* profile, |
| 149 const GURL& url, | 149 const GURL& url, |
| 150 const content::SSLStatus& ssl, | 150 const content::SSLStatus& ssl, |
| 151 bool show_history) OVERRIDE; | 151 bool show_history) OVERRIDE; |
| 152 virtual void ShowWebsiteSettings(Profile* profile, |
| 153 TabContentsWrapper* tab_contents_wrapper, |
| 154 const GURL& url, |
| 155 const content::SSLStatus& ssl, |
| 156 bool show_history) OVERRIDE; |
| 152 virtual void ShowAppMenu() OVERRIDE; | 157 virtual void ShowAppMenu() OVERRIDE; |
| 153 virtual bool PreHandleKeyboardEvent( | 158 virtual bool PreHandleKeyboardEvent( |
| 154 const NativeWebKeyboardEvent& event, | 159 const NativeWebKeyboardEvent& event, |
| 155 bool* is_keyboard_shortcut) OVERRIDE; | 160 bool* is_keyboard_shortcut) OVERRIDE; |
| 156 virtual void HandleKeyboardEvent( | 161 virtual void HandleKeyboardEvent( |
| 157 const NativeWebKeyboardEvent& event) OVERRIDE; | 162 const NativeWebKeyboardEvent& event) OVERRIDE; |
| 158 virtual void ShowCreateWebAppShortcutsDialog( | 163 virtual void ShowCreateWebAppShortcutsDialog( |
| 159 TabContentsWrapper* tab_contents) OVERRIDE; | 164 TabContentsWrapper* tab_contents) OVERRIDE; |
| 160 virtual void ShowCreateChromeAppShortcutsDialog( | 165 virtual void ShowCreateChromeAppShortcutsDialog( |
| 161 Profile* profile, const Extension* app) OVERRIDE; | 166 Profile* profile, const Extension* app) OVERRIDE; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 | 329 |
| 325 // Indicates whether the panel app icon is visible in the taskbar. | 330 // Indicates whether the panel app icon is visible in the taskbar. |
| 326 bool app_icon_visible_; | 331 bool app_icon_visible_; |
| 327 | 332 |
| 328 content::NotificationRegistrar registrar_; | 333 content::NotificationRegistrar registrar_; |
| 329 | 334 |
| 330 DISALLOW_COPY_AND_ASSIGN(Panel); | 335 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 331 }; | 336 }; |
| 332 | 337 |
| 333 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 338 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |