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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; | 269 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; |
270 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 270 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
271 virtual void UpdateTitleBar() OVERRIDE; | 271 virtual void UpdateTitleBar() OVERRIDE; |
272 virtual void BookmarkBarStateChanged( | 272 virtual void BookmarkBarStateChanged( |
273 BookmarkBar::AnimateChangeType change_type) OVERRIDE; | 273 BookmarkBar::AnimateChangeType change_type) OVERRIDE; |
274 virtual void UpdateDevTools() OVERRIDE; | 274 virtual void UpdateDevTools() OVERRIDE; |
275 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; | 275 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; |
276 virtual void SetStarredState(bool is_starred) OVERRIDE; | 276 virtual void SetStarredState(bool is_starred) OVERRIDE; |
277 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE; | 277 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE; |
278 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 278 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 279 virtual ui::WindowShowState GetRestoredState() const OVERRIDE; |
279 virtual gfx::Rect GetBounds() const OVERRIDE; | 280 virtual gfx::Rect GetBounds() const OVERRIDE; |
280 virtual bool IsMaximized() const OVERRIDE; | 281 virtual bool IsMaximized() const OVERRIDE; |
281 virtual bool IsMinimized() const OVERRIDE; | 282 virtual bool IsMinimized() const OVERRIDE; |
282 virtual void Maximize() OVERRIDE; | 283 virtual void Maximize() OVERRIDE; |
283 virtual void Minimize() OVERRIDE; | 284 virtual void Minimize() OVERRIDE; |
284 virtual void Restore() OVERRIDE; | 285 virtual void Restore() OVERRIDE; |
285 virtual void EnterFullscreen( | 286 virtual void EnterFullscreen( |
286 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; | 287 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; |
287 virtual void ExitFullscreen() OVERRIDE; | 288 virtual void ExitFullscreen() OVERRIDE; |
288 virtual void UpdateFullscreenExitBubbleContent( | 289 virtual void UpdateFullscreenExitBubbleContent( |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 gfx::ScopedSysColorChangeListener color_change_listener_; | 748 gfx::ScopedSysColorChangeListener color_change_listener_; |
748 | 749 |
749 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 750 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
750 | 751 |
751 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 752 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
752 | 753 |
753 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 754 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
754 }; | 755 }; |
755 | 756 |
756 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 757 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |