diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-13 15:46:40 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-13 15:46:40 +0000 |
commit | fb0728cf1761403db3e2ded2c4cc9426b981b09b (patch) | |
tree | 2a540280f7fb5ae5a54fee827e1899b1b59a3985 /chrome/test/ui | |
parent | 237c404691c13d4932e8b29198c6183b51479c09 (diff) | |
download | chromium_src-fb0728cf1761403db3e2ded2c4cc9426b981b09b.zip chromium_src-fb0728cf1761403db3e2ded2c4cc9426b981b09b.tar.gz chromium_src-fb0728cf1761403db3e2ded2c4cc9426b981b09b.tar.bz2 |
TabContentsWrapper -> TabContents, part 56.
That's almost all.
BUG=131026
TEST=no change
Review URL: https://chromiumcodereview.appspot.com/10551002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141891 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui')
-rw-r--r-- | chrome/test/ui/ppapi_uitest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/ui/ppapi_uitest.cc b/chrome/test/ui/ppapi_uitest.cc index 9e07c9e..e4eda70 100644 --- a/chrome/test/ui/ppapi_uitest.cc +++ b/chrome/test/ui/ppapi_uitest.cc @@ -232,7 +232,7 @@ void PPAPITestBase::RunTestURL(const GURL& test_url) { // any other value indicates completion (in this case it will start with // "PASS" or "FAIL"). This keeps us from timing out on waits for long tests. TestFinishObserver observer( - browser()->GetSelectedWebContents()->GetRenderViewHost(), kTimeoutMs); + browser()->GetActiveWebContents()->GetRenderViewHost(), kTimeoutMs); ui_test_utils::NavigateToURL(browser(), test_url); @@ -1056,7 +1056,7 @@ IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, View_CreateInvisible) { IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, View_PageHideShow) { // The plugin will be loaded in the foreground tab and will send us a message. TestFinishObserver observer( - browser()->GetSelectedWebContents()->GetRenderViewHost(), + browser()->GetActiveWebContents()->GetRenderViewHost(), TestTimeouts::action_max_timeout_ms()); GURL url = GetTestFileUrl("View_PageHideShow"); |