| Index: content/shell/browser/shell_mojo_test_utils_android.cc
|
| diff --git a/content/shell/browser/shell_mojo_test_utils_android.cc b/content/shell/browser/shell_mojo_test_utils_android.cc
|
| index 372b827ed8170144f002dd6ebcd909dbb96c3cf9..ba022906d611ff17be3aee7330586aabe216f4b9 100644
|
| --- a/content/shell/browser/shell_mojo_test_utils_android.cc
|
| +++ b/content/shell/browser/shell_mojo_test_utils_android.cc
|
| @@ -48,11 +48,11 @@ static ScopedJavaLocalRef<jobject> CreateServiceRegistryPair(
|
| content::ServiceRegistryImpl* registry_b = new ServiceRegistryImpl();
|
| test_environment->registries.push_back(registry_b);
|
|
|
| - mojo::shell::mojom::InterfaceProviderPtr exposed_services_a;
|
| + shell::mojom::InterfaceProviderPtr exposed_services_a;
|
| registry_a->Bind(GetProxy(&exposed_services_a));
|
| registry_b->BindRemoteServiceProvider(std::move(exposed_services_a));
|
|
|
| - mojo::shell::mojom::InterfaceProviderPtr exposed_services_b;
|
| + shell::mojom::InterfaceProviderPtr exposed_services_b;
|
| registry_b->Bind(GetProxy(&exposed_services_b));
|
| registry_a->BindRemoteServiceProvider(std::move(exposed_services_b));
|
|
|
|
|