Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c334a2e7 authored by Pirama Arumuga Nainar's avatar Pirama Arumuga Nainar Committed by Automerger Merge Worker
Browse files

Merge "Fix build with memory-mapped coverage (patch 2)" am: 64d16336 am:...

Merge "Fix build with memory-mapped coverage (patch 2)" am: 64d16336 am: 0c7c067f am: c7d022ec

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/1906672

Change-Id: I4b800029065b18dd91b436e45ebb4faf309fda55
parents f8c7dc56 c7d022ec
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ public:
     * Returns false if the session doesn't exist, or the client is already requesting the
     * session. Returns true otherwise.
     */
    virtual bool addClientUid(ClientIdType clientId, SessionIdType sessionId, uid_t clientUid);
    virtual bool addClientUid(ClientIdType clientId, SessionIdType sessionId, uid_t clientUid) = 0;

    /**
     * Retrieves the (unsorted) list of all clients requesting the session identified by
@@ -81,7 +81,7 @@ public:
     * Returns false if the session doesn't exist. Returns true otherwise.
     */
    virtual bool getClientUids(ClientIdType clientId, SessionIdType sessionId,
                               std::vector<int32_t>* out_clientUids);
                               std::vector<int32_t>* out_clientUids) = 0;

protected:
    virtual ~ControllerClientInterface() = default;