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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 virtual bool InPresentationMode() OVERRIDE; | 129 virtual bool InPresentationMode() OVERRIDE; |
130 #endif | 130 #endif |
131 | 131 |
132 virtual void ShowInstant(TabContents* preview_contents) OVERRIDE {} | 132 virtual void ShowInstant(TabContents* preview_contents) OVERRIDE {} |
133 virtual void HideInstant() OVERRIDE {} | 133 virtual void HideInstant() OVERRIDE {} |
134 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 134 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
135 virtual bool IsInstantTabShowing() OVERRIDE; | 135 virtual bool IsInstantTabShowing() OVERRIDE; |
136 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 136 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
137 const gfx::Rect& bounds) OVERRIDE; | 137 const gfx::Rect& bounds) OVERRIDE; |
138 virtual FindBar* CreateFindBar() OVERRIDE; | 138 virtual FindBar* CreateFindBar() OVERRIDE; |
| 139 virtual int GetConstrainedWindowTopY() OVERRIDE; |
139 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 140 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
140 const gfx::Rect& rect) OVERRIDE {} | 141 const gfx::Rect& rect) OVERRIDE {} |
141 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE {} | 142 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE {} |
142 | 143 |
143 protected: | 144 protected: |
144 virtual void DestroyBrowser() OVERRIDE {} | 145 virtual void DestroyBrowser() OVERRIDE {} |
145 | 146 |
146 private: | 147 private: |
147 TestLocationBar location_bar_; | 148 TestLocationBar location_bar_; |
148 | 149 |
149 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 150 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
150 }; | 151 }; |
151 | 152 |
152 namespace chrome { | 153 namespace chrome { |
153 | 154 |
154 // Helpers that handle the lifetime of TestBrowserWindow instances. | 155 // Helpers that handle the lifetime of TestBrowserWindow instances. |
155 Browser* CreateBrowserWithTestWindowForProfile(Profile* profile); | 156 Browser* CreateBrowserWithTestWindowForProfile(Profile* profile); |
156 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params); | 157 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params); |
157 | 158 |
158 } // namespace chrome | 159 } // namespace chrome |
159 | 160 |
160 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 161 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |