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

Commit 055b3e69 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "floss: fix TimeDelta calls from older libchrome breaks CrOS build." am: d6d4ef17

parents 20434f25 d6d4ef17
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -214,7 +214,12 @@ struct eatt_impl {
          FROM_HERE,
          base::BindOnce(&eatt_impl::connect_eatt_wrap, base::Unretained(this),
                         std::move(eatt_dev)),
          base::TimeDelta::FromMilliseconds(500));
#if BASE_VER < 931007
          base::TimeDelta::FromMilliseconds(500)
#else
          base::Milliseconds(500)
#endif
      );

      LOG_INFO("Scheduled peripheral connect eatt for device with status: %d",
               (int)status);