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