| Index: chrome/browser/web_applications/web_app_unittest.cc
|
| diff --git a/chrome/browser/web_applications/web_app_unittest.cc b/chrome/browser/web_applications/web_app_unittest.cc
|
| index 0c4f39ea44edc08f8966d71e9dbf0936bd460e00..689003db7bebee488d1129a8222b24651f3cf212 100644
|
| --- a/chrome/browser/web_applications/web_app_unittest.cc
|
| +++ b/chrome/browser/web_applications/web_app_unittest.cc
|
| @@ -16,6 +16,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| using content::BrowserThread;
|
| +using content::RenderViewHostTester;
|
|
|
| class WebApplicationTest : public TabContentsWrapperTestHarness {
|
| public:
|
| @@ -35,7 +36,8 @@ TEST_F(WebApplicationTest, GetShortcutInfoForTab) {
|
| web_app_info.description = description;
|
| web_app_info.app_url = url;
|
|
|
| - rvh_tester()->TestOnMessageReceived(
|
| + RenderViewHostTester::TestOnMessageReceived(
|
| + rvh(),
|
| ExtensionHostMsg_DidGetApplicationInfo(0, 0, web_app_info));
|
| ShellIntegration::ShortcutInfo info;
|
| web_app::GetShortcutInfoForTab(contents_wrapper(), &info);
|
|
|