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_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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 virtual void UpdateTitleBar() OVERRIDE; | 253 virtual void UpdateTitleBar() OVERRIDE; |
254 virtual void BookmarkBarStateChanged( | 254 virtual void BookmarkBarStateChanged( |
255 BookmarkBar::AnimateChangeType change_type) OVERRIDE; | 255 BookmarkBar::AnimateChangeType change_type) OVERRIDE; |
256 virtual void UpdateDevTools() OVERRIDE; | 256 virtual void UpdateDevTools() OVERRIDE; |
257 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; | 257 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; |
258 virtual void SetStarredState(bool is_starred) OVERRIDE; | 258 virtual void SetStarredState(bool is_starred) OVERRIDE; |
259 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 259 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
260 virtual gfx::Rect GetBounds() const OVERRIDE; | 260 virtual gfx::Rect GetBounds() const OVERRIDE; |
261 virtual bool IsMaximized() const OVERRIDE; | 261 virtual bool IsMaximized() const OVERRIDE; |
262 virtual bool IsMinimized() const OVERRIDE; | 262 virtual bool IsMinimized() const OVERRIDE; |
| 263 virtual void Maximize() OVERRIDE; |
| 264 virtual void Minimize() OVERRIDE; |
| 265 virtual void Restore() OVERRIDE; |
263 virtual void EnterFullscreen( | 266 virtual void EnterFullscreen( |
264 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; | 267 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; |
265 virtual void ExitFullscreen() OVERRIDE; | 268 virtual void ExitFullscreen() OVERRIDE; |
266 virtual void UpdateFullscreenExitBubbleContent( | 269 virtual void UpdateFullscreenExitBubbleContent( |
267 const GURL& url, | 270 const GURL& url, |
268 FullscreenExitBubbleType bubble_type) OVERRIDE; | 271 FullscreenExitBubbleType bubble_type) OVERRIDE; |
269 virtual bool IsFullscreen() const OVERRIDE; | 272 virtual bool IsFullscreen() const OVERRIDE; |
270 virtual LocationBar* GetLocationBar() const OVERRIDE; | 273 virtual LocationBar* GetLocationBar() const OVERRIDE; |
271 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 274 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
272 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; | 275 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 // If this flag is set then SetFocusToLocationBar() will set focus to the | 727 // If this flag is set then SetFocusToLocationBar() will set focus to the |
725 // location bar even if the browser window is not active. | 728 // location bar even if the browser window is not active. |
726 bool force_location_bar_focus_; | 729 bool force_location_bar_focus_; |
727 | 730 |
728 PendingFullscreenRequest fullscreen_request_; | 731 PendingFullscreenRequest fullscreen_request_; |
729 | 732 |
730 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 733 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
731 }; | 734 }; |
732 | 735 |
733 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 736 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |