| 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(ZoomController::ZoomIconState state) OVERRIDE {} |
| 49 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE {} |
| 50 virtual void ShowZoomBubble(int zoom_percent) 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 protected: | 144 protected: |
| 142 virtual void DestroyBrowser() OVERRIDE {} | 145 virtual void DestroyBrowser() OVERRIDE {} |
| 143 | 146 |
| 144 private: | 147 private: |
| 145 TestLocationBar location_bar_; | 148 TestLocationBar location_bar_; |
| 146 | 149 |
| 147 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 150 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 148 }; | 151 }; |
| 149 | 152 |
| 150 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 153 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |