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 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; | 37 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; |
38 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; | 38 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; |
39 virtual StatusBubble* GetStatusBubble() OVERRIDE; | 39 virtual StatusBubble* GetStatusBubble() OVERRIDE; |
40 virtual void UpdateTitleBar() OVERRIDE {} | 40 virtual void UpdateTitleBar() OVERRIDE {} |
41 virtual void BookmarkBarStateChanged( | 41 virtual void BookmarkBarStateChanged( |
42 BookmarkBar::AnimateChangeType change_type) OVERRIDE {} | 42 BookmarkBar::AnimateChangeType change_type) OVERRIDE {} |
43 virtual void UpdateDevTools() OVERRIDE {} | 43 virtual void UpdateDevTools() OVERRIDE {} |
44 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE {} | 44 virtual void SetDevToolsDockSide(DevToolsDockSide side) OVERRIDE {} |
45 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {} | 45 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {} |
46 virtual void SetStarredState(bool is_starred) OVERRIDE {} | 46 virtual void SetStarredState(bool is_starred) OVERRIDE {} |
47 virtual void SetZoomIconState(ZoomController::ZoomIconState state) OVERRIDE {} | 47 virtual void ZoomChangedForActiveTab(bool can_show_bubble) OVERRIDE {} |
48 virtual void SetZoomIconTooltipPercent(int zoom_percent) OVERRIDE {} | |
49 virtual void ShowZoomBubble(int zoom_percent) OVERRIDE {} | |
50 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 48 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
51 virtual gfx::Rect GetBounds() const OVERRIDE; | 49 virtual gfx::Rect GetBounds() const OVERRIDE; |
52 virtual bool IsMaximized() const OVERRIDE; | 50 virtual bool IsMaximized() const OVERRIDE; |
53 virtual bool IsMinimized() const OVERRIDE; | 51 virtual bool IsMinimized() const OVERRIDE; |
54 virtual void Maximize() OVERRIDE {} | 52 virtual void Maximize() OVERRIDE {} |
55 virtual void Minimize() OVERRIDE {} | 53 virtual void Minimize() OVERRIDE {} |
56 virtual void Restore() OVERRIDE {} | 54 virtual void Restore() OVERRIDE {} |
57 virtual void EnterFullscreen( | 55 virtual void EnterFullscreen( |
58 const GURL& url, FullscreenExitBubbleType type) OVERRIDE {} | 56 const GURL& url, FullscreenExitBubbleType type) OVERRIDE {} |
59 virtual void ExitFullscreen() OVERRIDE {} | 57 virtual void ExitFullscreen() OVERRIDE {} |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 | 150 |
153 namespace chrome { | 151 namespace chrome { |
154 | 152 |
155 // Helpers that handle the lifetime of TestBrowserWindow instances. | 153 // Helpers that handle the lifetime of TestBrowserWindow instances. |
156 Browser* CreateBrowserWithTestWindowForProfile(Profile* profile); | 154 Browser* CreateBrowserWithTestWindowForProfile(Profile* profile); |
157 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params); | 155 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params); |
158 | 156 |
159 } // namespace chrome | 157 } // namespace chrome |
160 | 158 |
161 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 159 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |