| 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_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 virtual void ShowUpdateChromeDialog() OVERRIDE; | 300 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 301 virtual void ShowTaskManager() OVERRIDE; | 301 virtual void ShowTaskManager() OVERRIDE; |
| 302 virtual void ShowBackgroundPages() OVERRIDE; | 302 virtual void ShowBackgroundPages() OVERRIDE; |
| 303 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) | 303 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) |
| 304 OVERRIDE; | 304 OVERRIDE; |
| 305 // TODO(beng): Not an override, move somewhere else. | 305 // TODO(beng): Not an override, move somewhere else. |
| 306 void SetDownloadShelfVisible(bool visible); | 306 void SetDownloadShelfVisible(bool visible); |
| 307 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 307 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 308 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 308 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 309 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; | 309 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; |
| 310 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents) OVERRIDE; | 310 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; |
| 311 virtual void ShowThemeInstallBubble() OVERRIDE; | 311 virtual void ShowThemeInstallBubble() OVERRIDE; |
| 312 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 312 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 313 virtual gfx::NativeWindow ShowHTMLDialog( | 313 virtual gfx::NativeWindow ShowHTMLDialog( |
| 314 HtmlDialogUIDelegate* delegate, | 314 HtmlDialogUIDelegate* delegate, |
| 315 gfx::NativeWindow parent_window) OVERRIDE; | 315 gfx::NativeWindow parent_window) OVERRIDE; |
| 316 virtual void UserChangedTheme() OVERRIDE; | 316 virtual void UserChangedTheme() OVERRIDE; |
| 317 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 317 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 318 virtual void TabContentsFocused(TabContents* source) OVERRIDE; | 318 virtual void TabContentsFocused(TabContents* source) OVERRIDE; |
| 319 virtual void ShowPageInfo(Profile* profile, | 319 virtual void ShowPageInfo(Profile* profile, |
| 320 const GURL& url, | 320 const GURL& url, |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 | 731 |
| 732 NotificationRegistrar registrar_; | 732 NotificationRegistrar registrar_; |
| 733 | 733 |
| 734 // Used to measure the loading spinner animation rate. | 734 // Used to measure the loading spinner animation rate. |
| 735 base::TimeTicks last_animation_time_; | 735 base::TimeTicks last_animation_time_; |
| 736 | 736 |
| 737 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 737 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 738 }; | 738 }; |
| 739 | 739 |
| 740 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 740 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |