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

Commit 205d39d2 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6060420 from 3a362ee6 to rvc-release

Change-Id: Id747e42d328334e9c90c966bd3e56313954a4cda
parents a087470c 3a362ee6
Loading
Loading
Loading
Loading

system/bta/hl/bta_hl_main.cc

deleted100644 → 0
+0 −1869

File deleted.

Preview size limit exceeded, changes collapsed.

system/btif/src/btif_hl.cc

deleted100644 → 0
+0 −4655

File deleted.

Preview size limit exceeded, changes collapsed.

+4 −3
Original line number Diff line number Diff line
@@ -2939,11 +2939,12 @@ static void register_for_event_notification(btif_rc_supported_event_t* p_event,
    return;
  }
  // interval is only valid for AVRC_EVT_PLAY_POS_CHANGED
  uint32_t interval = 0;
  uint32_t interval_in_seconds = 0;
  if (p_event->event_id == AVRC_EVT_PLAY_POS_CHANGED) {
    interval = 2000;
    interval_in_seconds = 2;
  }
  status = register_notification_cmd(p_transaction->lbl, p_event->event_id, interval, p_dev);
  status = register_notification_cmd(p_transaction->lbl, p_event->event_id,
                                     interval_in_seconds, p_dev);
  if (status != BT_STATUS_SUCCESS) {
    BTIF_TRACE_ERROR("%s: Error in Notification registration: %d", __func__,
                     status);
+4 −1
Original line number Diff line number Diff line
@@ -48,6 +48,9 @@ struct L2capLeModule::impl {
                                      &parameter_provider_};
};

L2capLeModule::L2capLeModule() {}
L2capLeModule::~L2capLeModule() {}

void L2capLeModule::ListDependencies(ModuleList* list) {
  list->add<hci::AclManager>();
}
+4 −4
Original line number Diff line number Diff line
@@ -26,13 +26,13 @@ namespace le {

class L2capLeModule : public bluetooth::Module {
 public:
  L2capLeModule() = default;
  ~L2capLeModule() = default;
  L2capLeModule();
  virtual ~L2capLeModule();

  /**
   * Get the api to the LE fixed channel l2cap module
   */
  std::unique_ptr<FixedChannelManager> GetFixedChannelManager();
  virtual std::unique_ptr<FixedChannelManager> GetFixedChannelManager();

  static const ModuleFactory Factory;

Loading