| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 virtual bool IsPanel() const OVERRIDE; | 276 virtual bool IsPanel() const OVERRIDE; |
| 277 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 277 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 278 virtual void DisableInactiveFrame() OVERRIDE; | 278 virtual void DisableInactiveFrame() OVERRIDE; |
| 279 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 279 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 280 Profile* profile) OVERRIDE; | 280 Profile* profile) OVERRIDE; |
| 281 virtual void ToggleBookmarkBar() OVERRIDE; | 281 virtual void ToggleBookmarkBar() OVERRIDE; |
| 282 virtual void ShowAboutChromeDialog() OVERRIDE; | 282 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 283 virtual void ShowUpdateChromeDialog() OVERRIDE; | 283 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 284 virtual void ShowTaskManager() OVERRIDE; | 284 virtual void ShowTaskManager() OVERRIDE; |
| 285 virtual void ShowBackgroundPages() OVERRIDE; | 285 virtual void ShowBackgroundPages() OVERRIDE; |
| 286 virtual void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) | 286 virtual void ShowBookmarkBubble(const GURL& url, |
| 287 OVERRIDE; | 287 bool already_bookmarked) OVERRIDE; |
| 288 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 288 // TODO(beng): Not an override, move somewhere else. | 289 // TODO(beng): Not an override, move somewhere else. |
| 289 void SetDownloadShelfVisible(bool visible); | 290 void SetDownloadShelfVisible(bool visible); |
| 290 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 291 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
| 291 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 292 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
| 292 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 293 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
| 293 virtual void UserChangedTheme() OVERRIDE; | 294 virtual void UserChangedTheme() OVERRIDE; |
| 294 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 295 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
| 295 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 296 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
| 296 virtual void ShowPageInfo(Profile* profile, | 297 virtual void ShowPageInfo(Profile* profile, |
| 297 const GURL& url, | 298 const GURL& url, |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 bool force_location_bar_focus_; | 710 bool force_location_bar_focus_; |
| 710 | 711 |
| 711 PendingFullscreenRequest fullscreen_request_; | 712 PendingFullscreenRequest fullscreen_request_; |
| 712 | 713 |
| 713 BrowserWindowMoveObserver* move_observer_; | 714 BrowserWindowMoveObserver* move_observer_; |
| 714 | 715 |
| 715 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 716 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 716 }; | 717 }; |
| 717 | 718 |
| 718 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 719 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |