| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; | 226 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; |
| 227 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 227 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
| 228 virtual void ToolbarSizeChanged(bool is_animating) OVERRIDE; | 228 virtual void ToolbarSizeChanged(bool is_animating) OVERRIDE; |
| 229 virtual void UpdateTitleBar() OVERRIDE; | 229 virtual void UpdateTitleBar() OVERRIDE; |
| 230 virtual void BookmarkBarStateChanged( | 230 virtual void BookmarkBarStateChanged( |
| 231 BookmarkBar::AnimateChangeType change_type) OVERRIDE; | 231 BookmarkBar::AnimateChangeType change_type) OVERRIDE; |
| 232 virtual void UpdateDevTools() OVERRIDE; | 232 virtual void UpdateDevTools() OVERRIDE; |
| 233 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; | 233 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; |
| 234 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; | 234 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; |
| 235 virtual void SetStarredState(bool is_starred) OVERRIDE; | 235 virtual void SetStarredState(bool is_starred) OVERRIDE; |
| 236 virtual void SetZoomIconState(ZoomController::ZoomIconState state) OVERRIDE; |
| 237 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; |
| 238 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; |
| 236 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 239 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 237 virtual gfx::Rect GetBounds() const OVERRIDE; | 240 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 238 virtual bool IsMaximized() const OVERRIDE; | 241 virtual bool IsMaximized() const OVERRIDE; |
| 239 virtual bool IsMinimized() const OVERRIDE; | 242 virtual bool IsMinimized() const OVERRIDE; |
| 240 virtual void Maximize() OVERRIDE; | 243 virtual void Maximize() OVERRIDE; |
| 241 virtual void Minimize() OVERRIDE; | 244 virtual void Minimize() OVERRIDE; |
| 242 virtual void Restore() OVERRIDE; | 245 virtual void Restore() OVERRIDE; |
| 243 virtual void EnterFullscreen( | 246 virtual void EnterFullscreen( |
| 244 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; | 247 const GURL& url, FullscreenExitBubbleType bubble_type) OVERRIDE; |
| 245 virtual void ExitFullscreen() OVERRIDE; | 248 virtual void ExitFullscreen() OVERRIDE; |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 bool force_location_bar_focus_; | 678 bool force_location_bar_focus_; |
| 676 | 679 |
| 677 PendingFullscreenRequest fullscreen_request_; | 680 PendingFullscreenRequest fullscreen_request_; |
| 678 | 681 |
| 679 gfx::ScopedSysColorChangeListener color_change_listener_; | 682 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 680 | 683 |
| 681 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 684 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 682 }; | 685 }; |
| 683 | 686 |
| 684 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 687 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |