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

Commit 9bfc2a63 authored by Łukasz Rymanowski's avatar Łukasz Rymanowski
Browse files

leaudio: Add missing RemoveDevice API

Bug: 150670922
Tag: #feature
Sponsor: jpawlowski@
test: compile

Change-Id: I81db9dc2a14a04fee39a4e7524404099c8523461
parent b9ccc4f3
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -74,6 +74,8 @@ class LeAudioClientInterfaceImpl : public LeAudioClientInterface,

  void Cleanup(void) override {}

  void RemoveDevice(const RawAddress& address) override {}

  void Connect(const RawAddress& address) override {}

  void Disconnect(const RawAddress& address) override {}
+3 −0
Original line number Diff line number Diff line
@@ -87,6 +87,9 @@ class LeAudioClientInterface {
  /* Cleanup the LeAudio */
  virtual void Cleanup(void) = 0;

  /* Called when LeAudio is unbonded. */
  virtual void RemoveDevice(const RawAddress& address) = 0;

  /* Set active le audio group */
  virtual void GroupSetActive(int group_id) = 0;
};