| 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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 virtual bool IsApplication() const OVERRIDE; | 848 virtual bool IsApplication() const OVERRIDE; |
| 849 virtual void ConvertContentsToApplication(TabContents* source) OVERRIDE; | 849 virtual void ConvertContentsToApplication(TabContents* source) OVERRIDE; |
| 850 virtual void BeforeUnloadFired(TabContents* source, | 850 virtual void BeforeUnloadFired(TabContents* source, |
| 851 bool proceed, | 851 bool proceed, |
| 852 bool* proceed_to_fire_unload) OVERRIDE; | 852 bool* proceed_to_fire_unload) OVERRIDE; |
| 853 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 853 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
| 854 virtual void RenderWidgetShowing() OVERRIDE; | 854 virtual void RenderWidgetShowing() OVERRIDE; |
| 855 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 855 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 856 virtual void OnStartDownload(TabContents* source, | 856 virtual void OnStartDownload(TabContents* source, |
| 857 DownloadItem* download) OVERRIDE; | 857 DownloadItem* download) OVERRIDE; |
| 858 virtual void ShowPageInfo(Profile* profile, | 858 virtual void ShowPageInfo(content::BrowserContext* browser_context, |
| 859 const GURL& url, | 859 const GURL& url, |
| 860 const NavigationEntry::SSLStatus& ssl, | 860 const NavigationEntry::SSLStatus& ssl, |
| 861 bool show_history) OVERRIDE; | 861 bool show_history) OVERRIDE; |
| 862 virtual void ViewSourceForTab(TabContents* source, | 862 virtual void ViewSourceForTab(TabContents* source, |
| 863 const GURL& page_url) OVERRIDE; | 863 const GURL& page_url) OVERRIDE; |
| 864 virtual void ViewSourceForFrame( | 864 virtual void ViewSourceForFrame( |
| 865 TabContents* source, | 865 TabContents* source, |
| 866 const GURL& frame_url, | 866 const GURL& frame_url, |
| 867 const std::string& frame_content_state) OVERRIDE; | 867 const std::string& frame_content_state) OVERRIDE; |
| 868 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, | 868 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1263 | 1263 |
| 1264 scoped_ptr<InstantController> instant_; | 1264 scoped_ptr<InstantController> instant_; |
| 1265 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1265 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
| 1266 | 1266 |
| 1267 BookmarkBar::State bookmark_bar_state_; | 1267 BookmarkBar::State bookmark_bar_state_; |
| 1268 | 1268 |
| 1269 DISALLOW_COPY_AND_ASSIGN(Browser); | 1269 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1270 }; | 1270 }; |
| 1271 | 1271 |
| 1272 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1272 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |