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; | 236 virtual void SetZoomIconState( |
| 237 ZoomController::ZoomIconState zoom_icon_state) OVERRIDE; |
237 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; | 238 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; |
238 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; | 239 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; |
239 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 240 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
240 virtual gfx::Rect GetBounds() const OVERRIDE; | 241 virtual gfx::Rect GetBounds() const OVERRIDE; |
241 virtual bool IsMaximized() const OVERRIDE; | 242 virtual bool IsMaximized() const OVERRIDE; |
242 virtual bool IsMinimized() const OVERRIDE; | 243 virtual bool IsMinimized() const OVERRIDE; |
243 virtual void Maximize() OVERRIDE; | 244 virtual void Maximize() OVERRIDE; |
244 virtual void Minimize() OVERRIDE; | 245 virtual void Minimize() OVERRIDE; |
245 virtual void Restore() OVERRIDE; | 246 virtual void Restore() OVERRIDE; |
246 virtual void EnterFullscreen( | 247 virtual void EnterFullscreen( |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
678 bool force_location_bar_focus_; | 679 bool force_location_bar_focus_; |
679 | 680 |
680 PendingFullscreenRequest fullscreen_request_; | 681 PendingFullscreenRequest fullscreen_request_; |
681 | 682 |
682 gfx::ScopedSysColorChangeListener color_change_listener_; | 683 gfx::ScopedSysColorChangeListener color_change_listener_; |
683 | 684 |
684 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 685 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
685 }; | 686 }; |
686 | 687 |
687 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 688 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |