| 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_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; | 38 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; |
| 39 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 39 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
| 40 virtual void ToolbarSizeChanged(bool is_animating) OVERRIDE {} | 40 virtual void ToolbarSizeChanged(bool is_animating) OVERRIDE {} |
| 41 virtual void UpdateTitleBar() OVERRIDE {} | 41 virtual void UpdateTitleBar() OVERRIDE {} |
| 42 virtual void BookmarkBarStateChanged( | 42 virtual void BookmarkBarStateChanged( |
| 43 BookmarkBar::AnimateChangeType change_type) OVERRIDE {} | 43 BookmarkBar::AnimateChangeType change_type) OVERRIDE {} |
| 44 virtual void UpdateDevTools() OVERRIDE {} | 44 virtual void UpdateDevTools() OVERRIDE {} |
| 45 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE {} | 45 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE {} |
| 46 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {} | 46 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {} |
| 47 virtual void SetStarredState(bool is_starred) OVERRIDE {} | 47 virtual void SetStarredState(bool is_starred) OVERRIDE {} |
| 48 virtual void SetZoomIconState(ZoomTabHelper::ZoomIconState state, |
| 49 int zoomPercent) OVERRIDE {} |
| 50 virtual void ShowZoomBubble(int zoomPercent) OVERRIDE {} |
| 48 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 51 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 49 virtual gfx::Rect GetBounds() const OVERRIDE; | 52 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 50 virtual bool IsMaximized() const OVERRIDE; | 53 virtual bool IsMaximized() const OVERRIDE; |
| 51 virtual bool IsMinimized() const OVERRIDE; | 54 virtual bool IsMinimized() const OVERRIDE; |
| 52 virtual void Maximize() OVERRIDE {} | 55 virtual void Maximize() OVERRIDE {} |
| 53 virtual void Minimize() OVERRIDE {} | 56 virtual void Minimize() OVERRIDE {} |
| 54 virtual void Restore() OVERRIDE {} | 57 virtual void Restore() OVERRIDE {} |
| 55 virtual void EnterFullscreen( | 58 virtual void EnterFullscreen( |
| 56 const GURL& url, FullscreenExitBubbleType type) OVERRIDE {} | 59 const GURL& url, FullscreenExitBubbleType type) OVERRIDE {} |
| 57 virtual void ExitFullscreen() OVERRIDE {} | 60 virtual void ExitFullscreen() OVERRIDE {} |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 protected: | 145 protected: |
| 143 virtual void DestroyBrowser() OVERRIDE {} | 146 virtual void DestroyBrowser() OVERRIDE {} |
| 144 | 147 |
| 145 private: | 148 private: |
| 146 TestLocationBar location_bar_; | 149 TestLocationBar location_bar_; |
| 147 | 150 |
| 148 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 151 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 149 }; | 152 }; |
| 150 | 153 |
| 151 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 154 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |