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

Commit d6d4ef17 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents d21ffe3a 233d3dbc
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);