diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 14:22:42 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 14:22:42 +0000 |
commit | 0502e1fe578631d0c7241ec1c500139ca8a9eda7 (patch) | |
tree | 3fed85b3eab0e730bb162e3e99bd3a119d6492aa /chrome/browser/web_applications | |
parent | c6103d870dd28a1bf6ebd0a693cf635a0ccfcae7 (diff) | |
download | chromium_src-0502e1fe578631d0c7241ec1c500139ca8a9eda7.zip chromium_src-0502e1fe578631d0c7241ec1c500139ca8a9eda7.tar.gz chromium_src-0502e1fe578631d0c7241ec1c500139ca8a9eda7.tar.bz2 |
TabContentsWrapper -> TabContents, part 2.
BUG=131026
TEST=no change
Review URL: https://chromiumcodereview.appspot.com/10542010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_applications')
-rw-r--r-- | chrome/browser/web_applications/web_app_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/web_applications/web_app_unittest.cc b/chrome/browser/web_applications/web_app_unittest.cc index a3a41b3..f189900 100644 --- a/chrome/browser/web_applications/web_app_unittest.cc +++ b/chrome/browser/web_applications/web_app_unittest.cc @@ -7,7 +7,7 @@ #include "base/file_path.h" #include "base/string_util.h" #include "base/utf_string_conversions.h" -#include "chrome/browser/ui/tab_contents/test_tab_contents_wrapper.h" +#include "chrome/browser/ui/tab_contents/test_tab_contents.h" #include "chrome/browser/ui/web_applications/web_app_ui.h" #include "chrome/common/extensions/extension_messages.h" #include "chrome/test/base/testing_profile.h" @@ -18,7 +18,7 @@ using content::BrowserThread; using content::RenderViewHostTester; -class WebApplicationTest : public TabContentsWrapperTestHarness { +class WebApplicationTest : public TabContentsTestHarness { public: WebApplicationTest() : ui_thread_(BrowserThread::UI, &message_loop_) { } @@ -40,7 +40,7 @@ TEST_F(WebApplicationTest, GetShortcutInfoForTab) { rvh(), ExtensionHostMsg_DidGetApplicationInfo(0, 0, web_app_info)); ShellIntegration::ShortcutInfo info; - web_app::GetShortcutInfoForTab(contents_wrapper(), &info); + web_app::GetShortcutInfoForTab(tab_contents(), &info); EXPECT_EQ(title, info.title); EXPECT_EQ(description, info.description); |