OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 virtual void ExitPresentationMode() OVERRIDE {} | 112 virtual void ExitPresentationMode() OVERRIDE {} |
113 virtual bool InPresentationMode() OVERRIDE; | 113 virtual bool InPresentationMode() OVERRIDE; |
114 #endif | 114 #endif |
115 | 115 |
116 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE {} | 116 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE {} |
117 virtual void HideInstant() OVERRIDE {} | 117 virtual void HideInstant() OVERRIDE {} |
118 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 118 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
119 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 119 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
120 const gfx::Rect& bounds) OVERRIDE; | 120 const gfx::Rect& bounds) OVERRIDE; |
121 virtual FindBar* CreateFindBar() OVERRIDE; | 121 virtual FindBar* CreateFindBar() OVERRIDE; |
122 virtual void ShowAvatarBubble(TabContents* tab_contents, | 122 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
123 const gfx::Rect& rect) OVERRIDE {} | 123 const gfx::Rect& rect) OVERRIDE {} |
124 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE {} | 124 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE {} |
125 | 125 |
126 #if defined(OS_CHROMEOS) | 126 #if defined(OS_CHROMEOS) |
127 virtual void ShowMobileSetup() OVERRIDE {} | 127 virtual void ShowMobileSetup() OVERRIDE {} |
128 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE {} | 128 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE {} |
129 #endif | 129 #endif |
130 | 130 |
131 protected: | 131 protected: |
132 virtual void DestroyBrowser() OVERRIDE {} | 132 virtual void DestroyBrowser() OVERRIDE {} |
133 | 133 |
134 private: | 134 private: |
135 TestLocationBar location_bar_; | 135 TestLocationBar location_bar_; |
136 | 136 |
137 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 137 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
138 }; | 138 }; |
139 | 139 |
140 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 140 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |