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

Unified Diff: services/catalog/reader.cc

Issue 2427443002: Replace remaining shell references with service manager (Closed)
Patch Set: Created 4 years, 2 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/manifest.json ('k') | services/navigation/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/catalog/reader.cc
diff --git a/services/catalog/reader.cc b/services/catalog/reader.cc
index 3c6afca3994692e06880896d075d87d599aa4627..0efe5fce29e6a9096ec97f94d271c62e68030345 100644
--- a/services/catalog/reader.cc
+++ b/services/catalog/reader.cc
@@ -113,9 +113,8 @@ void ScanDir(
// build (e.g. for applications that are packaged into others) and are not
// valid standalone packages.
base::FilePath package_path = GetExecutablePath(package_dir, entry->name());
- if (entry->name() != "service:shell" &&
- entry->name() != "service:catalog" &&
- !base::PathExists(package_path)) {
+ if (entry->name() != "service:service_manager" &&
+ entry->name() != "service:catalog" && !base::PathExists(package_path)) {
continue;
}
« no previous file with comments | « services/catalog/manifest.json ('k') | services/navigation/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698