| 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 bool with_toolbar) override; | 279 bool with_toolbar) override; |
| 280 void ExitFullscreen() override; | 280 void ExitFullscreen() override; |
| 281 void UpdateExclusiveAccessExitBubbleContent( | 281 void UpdateExclusiveAccessExitBubbleContent( |
| 282 const GURL& url, | 282 const GURL& url, |
| 283 ExclusiveAccessBubbleType bubble_type) override; | 283 ExclusiveAccessBubbleType bubble_type) override; |
| 284 bool ShouldHideUIForFullscreen() const override; | 284 bool ShouldHideUIForFullscreen() const override; |
| 285 bool IsFullscreen() const override; | 285 bool IsFullscreen() const override; |
| 286 bool IsFullscreenBubbleVisible() const override; | 286 bool IsFullscreenBubbleVisible() const override; |
| 287 bool SupportsFullscreenWithToolbar() const override; | 287 bool SupportsFullscreenWithToolbar() const override; |
| 288 void UpdateFullscreenWithToolbar(bool with_toolbar) override; | 288 void UpdateFullscreenWithToolbar(bool with_toolbar) override; |
| 289 void ToggleFullscreenToolbar() override; |
| 289 bool IsFullscreenWithToolbar() const override; | 290 bool IsFullscreenWithToolbar() const override; |
| 291 bool ShouldHideFullscreenToolbar() const override; |
| 290 #if defined(OS_WIN) | 292 #if defined(OS_WIN) |
| 291 void SetMetroSnapMode(bool enable) override; | 293 void SetMetroSnapMode(bool enable) override; |
| 292 bool IsInMetroSnapMode() const override; | 294 bool IsInMetroSnapMode() const override; |
| 293 #endif // defined(OS_WIN) | 295 #endif // defined(OS_WIN) |
| 294 LocationBar* GetLocationBar() const override; | 296 LocationBar* GetLocationBar() const override; |
| 295 void SetFocusToLocationBar(bool select_all) override; | 297 void SetFocusToLocationBar(bool select_all) override; |
| 296 void UpdateReloadStopState(bool is_loading, bool force) override; | 298 void UpdateReloadStopState(bool is_loading, bool force) override; |
| 297 void UpdateToolbar(content::WebContents* contents) override; | 299 void UpdateToolbar(content::WebContents* contents) override; |
| 298 void ResetToolbarTabState(content::WebContents* contents) override; | 300 void ResetToolbarTabState(content::WebContents* contents) override; |
| 299 void FocusToolbar() override; | 301 void FocusToolbar() override; |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; | 705 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; |
| 704 | 706 |
| 705 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 707 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
| 706 | 708 |
| 707 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 709 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 708 | 710 |
| 709 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 711 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 710 }; | 712 }; |
| 711 | 713 |
| 712 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 714 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |