Call bootFinished using JNI.
This way we dont need to use FIRST_CALL_TRANSACTION which forces us to
set bootFinished as the first method in the class.
These files have also been formatted with clang.
Test: Manually booted the device after changes.
Bug: 221898546
Change-Id: Ifd04938a22da9b811c6c032c229c9b58e8c1b4c7
diff --git a/libs/gui/SurfaceComposerClient.cpp b/libs/gui/SurfaceComposerClient.cpp
index 325c294..9ab98e8 100644
--- a/libs/gui/SurfaceComposerClient.cpp
+++ b/libs/gui/SurfaceComposerClient.cpp
@@ -2144,6 +2144,12 @@
mStatus = NO_INIT;
}
+status_t SurfaceComposerClient::bootFinished() {
+ sp<gui::ISurfaceComposer> sf(ComposerServiceAIDL::getComposerService());
+ binder::Status status = sf->bootFinished();
+ return statusTFromBinderStatus(status);
+}
+
sp<SurfaceControl> SurfaceComposerClient::createSurface(const String8& name, uint32_t w, uint32_t h,
PixelFormat format, int32_t flags,
const sp<IBinder>& parentHandle,