Merge "docs: Add brief and detailed descriptions for native trace API. Test: Verified via technical review and manual build."
diff --git a/libs/ui/GrallocAllocator.cpp b/libs/ui/GrallocAllocator.cpp
index 5c5d5b3..7af55e7 100644
--- a/libs/ui/GrallocAllocator.cpp
+++ b/libs/ui/GrallocAllocator.cpp
@@ -29,7 +29,7 @@
 
 Allocator::Allocator()
 {
-    mAllocator = IAllocator::getService("gralloc");
+    mAllocator = IAllocator::getService();
     if (mAllocator != nullptr) {
         mAllocator->createClient(
                 [&](const auto& tmpError, const auto& tmpClient) {
diff --git a/libs/ui/GrallocMapper.cpp b/libs/ui/GrallocMapper.cpp
index 6884dcb..8095247 100644
--- a/libs/ui/GrallocMapper.cpp
+++ b/libs/ui/GrallocMapper.cpp
@@ -28,7 +28,7 @@
 
 Mapper::Mapper()
 {
-    mMapper = IMapper::getService("gralloc-mapper");
+    mMapper = IMapper::getService();
     if (mMapper != nullptr && mMapper->isRemote()) {
         LOG_ALWAYS_FATAL("gralloc-mapper must be in passthrough mode");
     }