| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; | 244 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; |
| 245 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; | 245 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; |
| 246 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 246 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
| 247 virtual void UpdateTitleBar() OVERRIDE; | 247 virtual void UpdateTitleBar() OVERRIDE; |
| 248 virtual void BookmarkBarStateChanged( | 248 virtual void BookmarkBarStateChanged( |
| 249 BookmarkBar::AnimateChangeType change_type) OVERRIDE; | 249 BookmarkBar::AnimateChangeType change_type) OVERRIDE; |
| 250 virtual void UpdateDevTools() OVERRIDE; | 250 virtual void UpdateDevTools() OVERRIDE; |
| 251 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; | 251 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; |
| 252 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; | 252 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; |
| 253 virtual void SetStarredState(bool is_starred) OVERRIDE; | 253 virtual void SetStarredState(bool is_starred) OVERRIDE; |
| 254 #if defined(OS_WIN) |
| 255 virtual void SetMetroPinnedState(bool is_pinned) OVERRIDE; |
| 256 #endif |
| 254 virtual void SetZoomIconState( | 257 virtual void SetZoomIconState( |
| 255 ZoomController::ZoomIconState zoom_icon_state) OVERRIDE; | 258 ZoomController::ZoomIconState zoom_icon_state) OVERRIDE; |
| 256 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; | 259 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; |
| 257 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; | 260 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; |
| 258 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 261 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 259 virtual gfx::Rect GetBounds() const OVERRIDE; | 262 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 260 virtual bool IsMaximized() const OVERRIDE; | 263 virtual bool IsMaximized() const OVERRIDE; |
| 261 virtual bool IsMinimized() const OVERRIDE; | 264 virtual bool IsMinimized() const OVERRIDE; |
| 262 virtual void Maximize() OVERRIDE; | 265 virtual void Maximize() OVERRIDE; |
| 263 virtual void Minimize() OVERRIDE; | 266 virtual void Minimize() OVERRIDE; |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 gfx::ScopedSysColorChangeListener color_change_listener_; | 715 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 713 | 716 |
| 714 #if defined(USE_AURA) | 717 #if defined(USE_AURA) |
| 715 scoped_ptr<SearchViewController> search_view_controller_; | 718 scoped_ptr<SearchViewController> search_view_controller_; |
| 716 #endif | 719 #endif |
| 717 | 720 |
| 718 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 721 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 719 }; | 722 }; |
| 720 | 723 |
| 721 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 724 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |