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

Commit 40931130 authored by Łukasz Rymanowski's avatar Łukasz Rymanowski Committed by Automerger Merge Worker
Browse files

leaudio: Add missing RemoveDevice API am: 9bfc2a63

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1853035

Change-Id: I5ef19bd35d8f366d38b75a555dd70aebd6eacfc6
parents 1f149b0d 9bfc2a63
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;
};