| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 Profile* profile) OVERRIDE; | 144 Profile* profile) OVERRIDE; |
| 145 virtual void ToggleBookmarkBar() OVERRIDE; | 145 virtual void ToggleBookmarkBar() OVERRIDE; |
| 146 virtual void ShowAboutChromeDialog() OVERRIDE; | 146 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 147 virtual void ShowUpdateChromeDialog() OVERRIDE; | 147 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 148 virtual void ShowTaskManager() OVERRIDE; | 148 virtual void ShowTaskManager() OVERRIDE; |
| 149 virtual void ShowBackgroundPages() OVERRIDE; | 149 virtual void ShowBackgroundPages() OVERRIDE; |
| 150 virtual void ShowBookmarkBubble( | 150 virtual void ShowBookmarkBubble( |
| 151 const GURL& url, bool already_bookmarked) OVERRIDE; | 151 const GURL& url, bool already_bookmarked) OVERRIDE; |
| 152 virtual void ShowChromeToMobileBubble() OVERRIDE; | 152 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 153 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 153 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 154 virtual void ShowOneClickSigninBubble() OVERRIDE; | 154 virtual void ShowOneClickSigninBubble( |
| 155 const base::Closure& learn_more_callback, |
| 156 const base::Closure& advanced_callback) OVERRIDE; |
| 155 #endif | 157 #endif |
| 156 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 158 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 157 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 159 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 158 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 160 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 159 virtual void UserChangedTheme() OVERRIDE; | 161 virtual void UserChangedTheme() OVERRIDE; |
| 160 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 162 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 161 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 163 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 162 virtual void ShowPageInfo(Profile* profile, | 164 virtual void ShowPageInfo(Profile* profile, |
| 163 const GURL& url, | 165 const GURL& url, |
| 164 const content::SSLStatus& ssl, | 166 const content::SSLStatus& ssl, |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 AttentionMode attention_mode_; | 375 AttentionMode attention_mode_; |
| 374 | 376 |
| 375 ExpansionState expansion_state_; | 377 ExpansionState expansion_state_; |
| 376 | 378 |
| 377 content::NotificationRegistrar registrar_; | 379 content::NotificationRegistrar registrar_; |
| 378 | 380 |
| 379 DISALLOW_COPY_AND_ASSIGN(Panel); | 381 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 380 }; | 382 }; |
| 381 | 383 |
| 382 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 384 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |