Upstream has renamed a couple of functions that were used for coversion
between `base::Time`, and double. The new names reflect better the
actual purpose of this functions.
Chromium change:
https://chromium.googlesource.com/chromium/src/+/08b91b49531894cbe9061a1148fd535155c2554b
commit 08b91b49531894cbe9061a1148fd535155c2554b
Author: Peter Kasting <pkasting@chromium.org>
Date: Sat Oct 21 03:46:09 2023 +0000
Rename many Time functions:
* `FromDoubleT()` -> `FromSecondsSinceUnixEpoch()`
* `ToDoubleT()` -> `InSecondsFSinceUnixEpoch()`
* `FromJsTime()` -> `FromMillisecondsSinceUnixEpoch()`
* `ToJsTime*()` -> `InMillisecondsFSinceUnixEpoch*()`
* `FromJavaTime()` -> `FromMillisecondsSinceUnixEpoch()`
* `ToJavaTime()` -> `InMillisecondsSinceUnixEpoch()`
These are more descriptive of the functionality.
No other changes, aside from typecasting fixes in the following files:
* chrome/browser/ash/arc/fileapi/arc_documents_provider_root.cc
* third_party/blink/renderer/modules/notifications/notification_data.cc
* third_party/blink/renderer/modules/notifications/notification_data_test.cc
Further cleanup will happen separately, since this CL as-is isn't really
reviewable, only stampable.
Bug: none