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

Commit 64d16336 authored by Pirama Arumuga Nainar's avatar Pirama Arumuga Nainar Committed by Gerrit Code Review
Browse files

Merge "Fix build with memory-mapped coverage (patch 2)"

parents 9c9bafff ff3942cb
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;