Index: content/shell/browser/shell_content_browser_client.cc |
diff --git a/content/shell/browser/shell_content_browser_client.cc b/content/shell/browser/shell_content_browser_client.cc |
index dff897c85cae20d92f0e91c6621ce272468b4164..c9a2f575e0c644ae5f7a0a80f34452ddbcfac3e4 100644 |
--- a/content/shell/browser/shell_content_browser_client.cc |
+++ b/content/shell/browser/shell_content_browser_client.cc |
@@ -26,7 +26,7 @@ |
#include "content/public/common/service_names.h" |
#include "content/public/common/url_constants.h" |
#include "content/public/common/web_preferences.h" |
-#include "content/public/test/test_mojo_app.h" |
+#include "content/public/test/test_service.h" |
#include "content/shell/browser/shell.h" |
#include "content/shell/browser/shell_browser_context.h" |
#include "content/shell/browser/shell_browser_main_parts.h" |
@@ -198,8 +198,8 @@ void ShellContentBrowserClient::RegisterInProcessMojoApplications( |
void ShellContentBrowserClient::RegisterOutOfProcessMojoApplications( |
OutOfProcessMojoApplicationMap* apps) { |
- apps->insert(std::make_pair(kTestMojoAppUrl, |
- base::UTF8ToUTF16("Test Mojo App"))); |
+ apps->insert(std::make_pair(kTestServiceUrl, |
+ base::UTF8ToUTF16("Test Service"))); |
} |
std::unique_ptr<base::Value> |