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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 virtual bool InPresentationMode() OVERRIDE; | 105 virtual bool InPresentationMode() OVERRIDE; |
106 #endif | 106 #endif |
107 | 107 |
108 virtual void PrepareForInstant() OVERRIDE {} | 108 virtual void PrepareForInstant() OVERRIDE {} |
109 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE {} | 109 virtual void ShowInstant(TabContentsWrapper* preview_contents) OVERRIDE {} |
110 virtual void HideInstant(bool instant_is_active) OVERRIDE {} | 110 virtual void HideInstant(bool instant_is_active) OVERRIDE {} |
111 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 111 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
112 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 112 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
113 const gfx::Rect& bounds) OVERRIDE; | 113 const gfx::Rect& bounds) OVERRIDE; |
114 virtual FindBar* CreateFindBar() OVERRIDE; | 114 virtual FindBar* CreateFindBar() OVERRIDE; |
| 115 virtual void ShowAvatarBubble(TabContents* tab_contents, |
| 116 const gfx::Rect& rect) OVERRIDE {} |
115 | 117 |
116 #if defined(OS_CHROMEOS) | 118 #if defined(OS_CHROMEOS) |
117 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE {} | 119 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE {} |
118 #endif | 120 #endif |
119 | 121 |
120 protected: | 122 protected: |
121 virtual void DestroyBrowser() OVERRIDE {} | 123 virtual void DestroyBrowser() OVERRIDE {} |
122 | 124 |
123 private: | 125 private: |
124 TestLocationBar location_bar_; | 126 TestLocationBar location_bar_; |
125 | 127 |
126 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 128 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
127 }; | 129 }; |
128 | 130 |
129 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 131 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |