| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 void EnterFullscreen(const GURL& url, | 277 void EnterFullscreen(const GURL& url, |
| 278 ExclusiveAccessBubbleType bubble_type, | 278 ExclusiveAccessBubbleType bubble_type, |
| 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; | |
| 288 void UpdateFullscreenWithToolbar(bool with_toolbar) override; | 287 void UpdateFullscreenWithToolbar(bool with_toolbar) override; |
| 289 bool IsFullscreenWithToolbar() const override; | 288 bool IsFullscreenWithToolbar() const override; |
| 290 #if defined(OS_WIN) | 289 #if defined(OS_WIN) |
| 291 void SetMetroSnapMode(bool enable) override; | 290 void SetMetroSnapMode(bool enable) override; |
| 292 bool IsInMetroSnapMode() const override; | 291 bool IsInMetroSnapMode() const override; |
| 293 #endif // defined(OS_WIN) | 292 #endif // defined(OS_WIN) |
| 294 LocationBar* GetLocationBar() const override; | 293 LocationBar* GetLocationBar() const override; |
| 295 void SetFocusToLocationBar(bool select_all) override; | 294 void SetFocusToLocationBar(bool select_all) override; |
| 296 void UpdateReloadStopState(bool is_loading, bool force) override; | 295 void UpdateReloadStopState(bool is_loading, bool force) override; |
| 297 void UpdateToolbar(content::WebContents* contents) override; | 296 void UpdateToolbar(content::WebContents* contents) override; |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; | 698 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; |
| 700 | 699 |
| 701 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 700 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
| 702 | 701 |
| 703 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 702 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 704 | 703 |
| 705 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 704 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 706 }; | 705 }; |
| 707 | 706 |
| 708 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 707 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |