diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-01 18:26:39 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-01 18:26:39 +0000 |
commit | ae5379b6f7bad9acde2c95087eb623a2940599c4 (patch) | |
tree | 5b8994febfcbf908f088bd382a6980265e4d035e /chrome/test/ui_test_utils.h | |
parent | f7b8b9f697e41f44319ac7b757c9442d07f73b0c (diff) | |
download | chromium_src-ae5379b6f7bad9acde2c95087eb623a2940599c4.zip chromium_src-ae5379b6f7bad9acde2c95087eb623a2940599c4.tar.gz chromium_src-ae5379b6f7bad9acde2c95087eb623a2940599c4.tar.bz2 |
Revert 73294 - Move find-in-page from TabContents to TabContentsWrapper.
BUG=71097
TEST=Hammer on find-in-page on all platforms. Nothing should crash, break, or have any user-visible change.
Review URL: http://codereview.chromium.org/6378014
TBR=avi@chromium.org
Review URL: http://codereview.chromium.org/6286019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73307 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui_test_utils.h')
-rw-r--r-- | chrome/test/ui_test_utils.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/test/ui_test_utils.h b/chrome/test/ui_test_utils.h index 89dd676..d6a7cd6 100644 --- a/chrome/test/ui_test_utils.h +++ b/chrome/test/ui_test_utils.h @@ -44,7 +44,6 @@ class RenderWidgetHost; class ScopedTempDir; class SkBitmap; class TabContents; -class TabContentsWrapper; class Value; namespace gfx { @@ -210,7 +209,7 @@ void WaitForFocusInBrowser(Browser* browser); // Performs a find in the page of the specified tab. Returns the number of // matches found. |ordinal| is an optional parameter which is set to the index // of the current match. -int FindInPage(TabContentsWrapper* tab, +int FindInPage(TabContents* tab, const string16& search_string, bool forward, bool case_sensitive, |