| 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 ShowAboutChromeDialog() OVERRIDE; | 300 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 301 virtual void ShowUpdateChromeDialog() OVERRIDE; | 301 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 302 virtual void ShowTaskManager() OVERRIDE; | 302 virtual void ShowTaskManager() OVERRIDE; |
| 303 virtual void ShowBackgroundPages() OVERRIDE; | 303 virtual void ShowBackgroundPages() OVERRIDE; |
| 304 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) | 304 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) |
| 305 OVERRIDE; | 305 OVERRIDE; |
| 306 // TODO(beng): Not an override, move somewhere else. | 306 // TODO(beng): Not an override, move somewhere else. |
| 307 void SetDownloadShelfVisible(bool visible); | 307 void SetDownloadShelfVisible(bool visible); |
| 308 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 308 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 309 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 309 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 310 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; | |
| 311 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; | 310 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; |
| 312 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 311 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 313 virtual void UserChangedTheme() OVERRIDE; | 312 virtual void UserChangedTheme() OVERRIDE; |
| 314 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 313 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 315 virtual void TabContentsFocused(TabContents* source) OVERRIDE; | 314 virtual void TabContentsFocused(TabContents* source) OVERRIDE; |
| 316 virtual void ShowPageInfo(Profile* profile, | 315 virtual void ShowPageInfo(Profile* profile, |
| 317 const GURL& url, | 316 const GURL& url, |
| 318 const NavigationEntry::SSLStatus& ssl, | 317 const NavigationEntry::SSLStatus& ssl, |
| 319 bool show_history) OVERRIDE; | 318 bool show_history) OVERRIDE; |
| 320 virtual void ShowAppMenu() OVERRIDE; | 319 virtual void ShowAppMenu() OVERRIDE; |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 // If this flag is set then SetFocusToLocationBar() will set focus to the | 731 // If this flag is set then SetFocusToLocationBar() will set focus to the |
| 733 // location bar even if the browser window is not active. | 732 // location bar even if the browser window is not active. |
| 734 bool force_location_bar_focus_; | 733 bool force_location_bar_focus_; |
| 735 | 734 |
| 736 PendingFullscreenRequest fullscreen_request_; | 735 PendingFullscreenRequest fullscreen_request_; |
| 737 | 736 |
| 738 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 737 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 739 }; | 738 }; |
| 740 | 739 |
| 741 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 740 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |