Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3192)

Unified Diff: services/catalog/catalog.cc

Issue 2131493002: ShellConnection -> ServiceContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@st
Patch Set: . Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/catalog/catalog.h ('k') | services/navigation/navigation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « services/catalog/catalog.h ('k') | services/navigation/navigation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698