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_PANELS_PANEL_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_H_ |
6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_H_ |
7 | 7 |
8 #include "chrome/browser/ui/browser_window.h" | 8 #include "chrome/browser/ui/browser_window.h" |
9 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 9 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
10 | 10 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; | 52 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; |
53 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; | 53 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; |
54 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 54 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
55 virtual void UpdateTitleBar() OVERRIDE; | 55 virtual void UpdateTitleBar() OVERRIDE; |
56 virtual void BookmarkBarStateChanged( | 56 virtual void BookmarkBarStateChanged( |
57 BookmarkBar::AnimateChangeType change_type) OVERRIDE; | 57 BookmarkBar::AnimateChangeType change_type) OVERRIDE; |
58 virtual void UpdateDevTools() OVERRIDE; | 58 virtual void UpdateDevTools() OVERRIDE; |
59 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; | 59 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; |
60 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; | 60 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; |
61 virtual void SetStarredState(bool is_starred) OVERRIDE; | 61 virtual void SetStarredState(bool is_starred) OVERRIDE; |
62 virtual void SetZoomIconState(ZoomController::ZoomIconState state) OVERRIDE; | 62 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE; |
63 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; | |
64 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; | |
65 virtual void EnterFullscreen( | 63 virtual void EnterFullscreen( |
66 const GURL& url, FullscreenExitBubbleType type) OVERRIDE; | 64 const GURL& url, FullscreenExitBubbleType type) OVERRIDE; |
67 virtual void ExitFullscreen() OVERRIDE; | 65 virtual void ExitFullscreen() OVERRIDE; |
68 #if defined(OS_WIN) | 66 #if defined(OS_WIN) |
69 virtual void SetMetroSnapMode(bool enable) OVERRIDE; | 67 virtual void SetMetroSnapMode(bool enable) OVERRIDE; |
70 virtual bool IsInMetroSnapMode() const OVERRIDE; | 68 virtual bool IsInMetroSnapMode() const OVERRIDE; |
71 #endif | 69 #endif |
72 virtual void UpdateFullscreenExitBubbleContent( | 70 virtual void UpdateFullscreenExitBubbleContent( |
73 const GURL& url, | 71 const GURL& url, |
74 FullscreenExitBubbleType bubble_type) OVERRIDE; | 72 FullscreenExitBubbleType bubble_type) OVERRIDE; |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 Panel* panel_; // Weak pointer. Owns us. | 165 Panel* panel_; // Weak pointer. Owns us. |
168 | 166 |
169 // Platform specifc implementation for panels. It'd be one of | 167 // Platform specifc implementation for panels. It'd be one of |
170 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. | 168 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. |
171 NativePanel* native_panel_; // Weak, owns us (through ownership of Panel). | 169 NativePanel* native_panel_; // Weak, owns us (through ownership of Panel). |
172 | 170 |
173 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindow); | 171 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindow); |
174 }; | 172 }; |
175 | 173 |
176 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_H_ | 174 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_H_ |
OLD | NEW |