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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 267 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
268 virtual void UpdateTitleBar() OVERRIDE; | 268 virtual void UpdateTitleBar() OVERRIDE; |
269 virtual void BookmarkBarStateChanged( | 269 virtual void BookmarkBarStateChanged( |
270 BookmarkBar::AnimateChangeType change_type) OVERRIDE; | 270 BookmarkBar::AnimateChangeType change_type) OVERRIDE; |
271 virtual void UpdateDevTools() OVERRIDE; | 271 virtual void UpdateDevTools() OVERRIDE; |
272 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; | 272 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; |
273 virtual void SetStarredState(bool is_starred) OVERRIDE; | 273 virtual void SetStarredState(bool is_starred) OVERRIDE; |
274 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE; | 274 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE; |
275 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 275 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
276 virtual gfx::Rect GetBounds() const OVERRIDE; | 276 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 277 virtual gfx::Rect GetContentBounds() const OVERRIDE; |
277 virtual bool IsMaximized() const OVERRIDE; | 278 virtual bool IsMaximized() const OVERRIDE; |
278 virtual bool IsMinimized() const OVERRIDE; | 279 virtual bool IsMinimized() const OVERRIDE; |
279 virtual void Maximize() OVERRIDE; | 280 virtual void Maximize() OVERRIDE; |
280 virtual void Minimize() OVERRIDE; | 281 virtual void Minimize() OVERRIDE; |
281 virtual void Restore() OVERRIDE; | 282 virtual void Restore() OVERRIDE; |
282 virtual void EnterFullscreen( | 283 virtual void EnterFullscreen( |
283 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; | 284 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; |
284 virtual void ExitFullscreen() OVERRIDE; | 285 virtual void ExitFullscreen() OVERRIDE; |
285 virtual void UpdateFullscreenExitBubbleContent( | 286 virtual void UpdateFullscreenExitBubbleContent( |
286 const GURL& url, | 287 const GURL& url, |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 gfx::ScopedSysColorChangeListener color_change_listener_; | 755 gfx::ScopedSysColorChangeListener color_change_listener_; |
755 | 756 |
756 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 757 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
757 | 758 |
758 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 759 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
759 | 760 |
760 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 761 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
761 }; | 762 }; |
762 | 763 |
763 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 764 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |