| 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_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 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 const GURL& url) OVERRIDE; | 938 const GURL& url) OVERRIDE; |
| 939 virtual void ContentsMouseEvent(content::WebContents* source, | 939 virtual void ContentsMouseEvent(content::WebContents* source, |
| 940 const gfx::Point& location, | 940 const gfx::Point& location, |
| 941 bool motion) OVERRIDE; | 941 bool motion) OVERRIDE; |
| 942 virtual void ContentsZoomChange(bool zoom_in) OVERRIDE; | 942 virtual void ContentsZoomChange(bool zoom_in) OVERRIDE; |
| 943 virtual void WebContentsFocused(content::WebContents* content) OVERRIDE; | 943 virtual void WebContentsFocused(content::WebContents* content) OVERRIDE; |
| 944 virtual bool TakeFocus(bool reverse) OVERRIDE; | 944 virtual bool TakeFocus(bool reverse) OVERRIDE; |
| 945 virtual bool IsApplication() const OVERRIDE; | 945 virtual bool IsApplication() const OVERRIDE; |
| 946 virtual void ConvertContentsToApplication( | 946 virtual void ConvertContentsToApplication( |
| 947 content::WebContents* source) OVERRIDE; | 947 content::WebContents* source) OVERRIDE; |
| 948 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 948 virtual void BeforeUnloadFired(content::WebContents* source, | 949 virtual void BeforeUnloadFired(content::WebContents* source, |
| 949 bool proceed, | 950 bool proceed, |
| 950 bool* proceed_to_fire_unload) OVERRIDE; | 951 bool* proceed_to_fire_unload) OVERRIDE; |
| 951 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 952 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
| 952 virtual void RenderWidgetShowing() OVERRIDE; | 953 virtual void RenderWidgetShowing() OVERRIDE; |
| 953 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 954 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 954 virtual void OnStartDownload(content::WebContents* source, | 955 virtual void OnStartDownload(content::WebContents* source, |
| 955 content::DownloadItem* download) OVERRIDE; | 956 content::DownloadItem* download) OVERRIDE; |
| 956 virtual void ShowPageInfo(content::BrowserContext* browser_context, | 957 virtual void ShowPageInfo(content::BrowserContext* browser_context, |
| 957 const GURL& url, | 958 const GURL& url, |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1438 | 1439 |
| 1439 scoped_refptr<FullscreenController> fullscreen_controller_; | 1440 scoped_refptr<FullscreenController> fullscreen_controller_; |
| 1440 | 1441 |
| 1441 // True if the browser window has been shown at least once. | 1442 // True if the browser window has been shown at least once. |
| 1442 bool window_has_shown_; | 1443 bool window_has_shown_; |
| 1443 | 1444 |
| 1444 DISALLOW_COPY_AND_ASSIGN(Browser); | 1445 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1445 }; | 1446 }; |
| 1446 | 1447 |
| 1447 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1448 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |