| 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_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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 const StartSyncCallback& start_sync_callback) OVERRIDE; | 290 const StartSyncCallback& start_sync_callback) OVERRIDE; |
| 291 #endif | 291 #endif |
| 292 // TODO(beng): Not an override, move somewhere else. | 292 // TODO(beng): Not an override, move somewhere else. |
| 293 void SetDownloadShelfVisible(bool visible); | 293 void SetDownloadShelfVisible(bool visible); |
| 294 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 294 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 295 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 295 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 296 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 296 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 297 virtual void UserChangedTheme() OVERRIDE; | 297 virtual void UserChangedTheme() OVERRIDE; |
| 298 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 298 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 299 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 299 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 300 virtual void ShowPageInfo(Profile* profile, | 300 virtual void ShowPageInfo(content::WebContents* web_contents, |
| 301 const GURL& url, | 301 const GURL& url, |
| 302 const content::SSLStatus& ssl, | 302 const content::SSLStatus& ssl, |
| 303 bool show_history) OVERRIDE; | 303 bool show_history) OVERRIDE; |
| 304 virtual void ShowWebsiteSettings(Profile* profile, | 304 virtual void ShowWebsiteSettings(Profile* profile, |
| 305 TabContents* tab_contents, | 305 TabContents* tab_contents, |
| 306 const GURL& url, | 306 const GURL& url, |
| 307 const content::SSLStatus& ssl, | 307 const content::SSLStatus& ssl, |
| 308 bool show_history) OVERRIDE; | 308 bool show_history) OVERRIDE; |
| 309 virtual void ShowAppMenu() OVERRIDE; | 309 virtual void ShowAppMenu() OVERRIDE; |
| 310 virtual bool PreHandleKeyboardEvent( | 310 virtual bool PreHandleKeyboardEvent( |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 bool force_location_bar_focus_; | 697 bool force_location_bar_focus_; |
| 698 | 698 |
| 699 PendingFullscreenRequest fullscreen_request_; | 699 PendingFullscreenRequest fullscreen_request_; |
| 700 | 700 |
| 701 gfx::ScopedSysColorChangeListener color_change_listener_; | 701 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 702 | 702 |
| 703 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 703 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 704 }; | 704 }; |
| 705 | 705 |
| 706 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 706 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |