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

Unified Diff: services/service_manager/background/tests/test_catalog_store.cc

Issue 2420253002: Rename shell namespace to 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
Index: services/service_manager/background/tests/test_catalog_store.cc
diff --git a/services/service_manager/background/tests/test_catalog_store.cc b/services/service_manager/background/tests/test_catalog_store.cc
index 5cda100cd83382bfe0c44fb62b6e2227329a5ec7..b2cf09a5a1c4725516783b44c430f7edd90df435 100644
--- a/services/service_manager/background/tests/test_catalog_store.cc
+++ b/services/service_manager/background/tests/test_catalog_store.cc
@@ -6,7 +6,7 @@
using catalog::Store;
-namespace shell {
+namespace service_manager {
TestCatalogStore::TestCatalogStore(std::unique_ptr<base::ListValue> store)
: store_(std::move(store)) {}
@@ -34,7 +34,7 @@ std::unique_ptr<base::DictionaryValue> BuildPermissiveSerializedAppInfo(
new base::DictionaryValue);
std::unique_ptr<base::ListValue> provided_classes_list(
new base::ListValue);
- provided_classes_list->AppendString("shell::mojom::TestService");
+ provided_classes_list->AppendString("service_manager::mojom::TestService");
provided_classes->Set("shell:test_service", std::move(provided_classes_list));
capabilities->Set(Store::kCapabilities_ProvidedKey,
std::move(provided_classes));
@@ -52,4 +52,4 @@ std::unique_ptr<base::DictionaryValue> BuildPermissiveSerializedAppInfo(
return app;
}
-} // namespace shell
+} // namespace service_manager

Powered by Google App Engine
This is Rietveld 408576698