| Index: content/browser/mojo_shell_browsertest.cc
|
| diff --git a/content/browser/mojo_shell_browsertest.cc b/content/browser/mojo_shell_browsertest.cc
|
| index dfe8a06ca603f75efcf8215a08a79d2e692a617e..9777e624052530cca790f31bcb0f9fbcbeff7468 100644
|
| --- a/content/browser/mojo_shell_browsertest.cc
|
| +++ b/content/browser/mojo_shell_browsertest.cc
|
| @@ -46,7 +46,7 @@ class MojoShellTest : public ContentBrowserTest {
|
| IN_PROC_BROWSER_TEST_F(MojoShellTest, TestBrowserConnection) {
|
| auto test_app = MojoAppConnection::Create(
|
| GetUserId(), kInProcessTestMojoAppName, kBrowserMojoAppUrl);
|
| - TestMojoServicePtr test_service;
|
| + mojom::TestMojoServicePtr test_service;
|
| test_app->GetInterface(&test_service);
|
|
|
| base::RunLoop run_loop;
|
| @@ -60,7 +60,7 @@ IN_PROC_BROWSER_TEST_F(MojoShellTest, TestUtilityConnection) {
|
| // a TestMojoApp at |kTestMojoAppUrl|.
|
| auto test_app = MojoAppConnection::Create(GetUserId(), kTestMojoAppUrl,
|
| kBrowserMojoAppUrl);
|
| - TestMojoServicePtr test_service;
|
| + mojom::TestMojoServicePtr test_service;
|
| test_app->GetInterface(&test_service);
|
|
|
| base::RunLoop run_loop;
|
|
|