| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; | 53 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; |
| 54 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; | 54 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; |
| 55 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 55 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
| 56 virtual void UpdateTitleBar() OVERRIDE; | 56 virtual void UpdateTitleBar() OVERRIDE; |
| 57 virtual void BookmarkBarStateChanged( | 57 virtual void BookmarkBarStateChanged( |
| 58 BookmarkBar::AnimateChangeType change_type) OVERRIDE; | 58 BookmarkBar::AnimateChangeType change_type) OVERRIDE; |
| 59 virtual void UpdateDevTools() OVERRIDE; | 59 virtual void UpdateDevTools() OVERRIDE; |
| 60 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; | 60 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE; |
| 61 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; | 61 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE; |
| 62 virtual void SetStarredState(bool is_starred) OVERRIDE; | 62 virtual void SetStarredState(bool is_starred) OVERRIDE; |
| 63 #if defined(OS_WIN) |
| 64 virtual void SetMetroPinnedState(bool is_pinned) OVERRIDE; |
| 65 #endif |
| 63 virtual void SetZoomIconState(ZoomController::ZoomIconState state) OVERRIDE; | 66 virtual void SetZoomIconState(ZoomController::ZoomIconState state) OVERRIDE; |
| 64 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; | 67 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE; |
| 65 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; | 68 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE; |
| 66 virtual void EnterFullscreen( | 69 virtual void EnterFullscreen( |
| 67 const GURL& url, FullscreenExitBubbleType type) OVERRIDE; | 70 const GURL& url, FullscreenExitBubbleType type) OVERRIDE; |
| 68 virtual void ExitFullscreen() OVERRIDE; | 71 virtual void ExitFullscreen() OVERRIDE; |
| 69 #if defined(OS_WIN) | 72 #if defined(OS_WIN) |
| 70 virtual void SetMetroSnapMode(bool enable) OVERRIDE; | 73 virtual void SetMetroSnapMode(bool enable) OVERRIDE; |
| 71 virtual bool IsInMetroSnapMode() const OVERRIDE; | 74 virtual bool IsInMetroSnapMode() const OVERRIDE; |
| 72 #endif | 75 #endif |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 Panel* panel_; // Weak pointer. Owns us. | 172 Panel* panel_; // Weak pointer. Owns us. |
| 170 | 173 |
| 171 // Platform specifc implementation for panels. It'd be one of | 174 // Platform specifc implementation for panels. It'd be one of |
| 172 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. | 175 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. |
| 173 NativePanel* native_panel_; // Weak, owns us (through ownership of Panel). | 176 NativePanel* native_panel_; // Weak, owns us (through ownership of Panel). |
| 174 | 177 |
| 175 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindow); | 178 DISALLOW_COPY_AND_ASSIGN(PanelBrowserWindow); |
| 176 }; | 179 }; |
| 177 | 180 |
| 178 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_H_ | 181 #endif // CHROME_BROWSER_UI_PANELS_PANEL_BROWSER_WINDOW_H_ |
| OLD | NEW |