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