Index: services/catalog/catalog.cc |
diff --git a/services/catalog/catalog.cc b/services/catalog/catalog.cc |
index 79acc07d5b076291ca75d810991499d472b4a44a..501db2db6eb1b6f602307c8b982af1d00cabaddd 100644 |
--- a/services/catalog/catalog.cc |
+++ b/services/catalog/catalog.cc |
@@ -18,7 +18,7 @@ |
#include "services/catalog/instance.h" |
#include "services/catalog/reader.h" |
#include "services/shell/public/cpp/connection.h" |
-#include "services/shell/public/cpp/shell_connection.h" |
+#include "services/shell/public/cpp/service_context.h" |
namespace catalog { |
namespace { |
@@ -92,7 +92,7 @@ shell::mojom::ServicePtr Catalog::TakeService() { |
Catalog::Catalog(std::unique_ptr<Store> store) |
: store_(std::move(store)), weak_factory_(this) { |
shell::mojom::ServiceRequest request = GetProxy(&service_); |
- shell_connection_.reset(new shell::ShellConnection(this, std::move(request))); |
+ shell_connection_.reset(new shell::ServiceContext(this, std::move(request))); |
} |
void Catalog::ScanSystemPackageDir() { |