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