Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: chrome/test/base/test_browser_window.h

Issue 9003014: Replace WebUI::tab_contents() with web_contents() and switch all users to use web_contents.h inst... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/common/chrome_notification_types.h ('k') | chrome/test/base/test_html_dialog_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698