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