2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Use crl::time/now instead of TimeMs/getms.

This commit is contained in:
John Preston
2019-02-19 10:57:53 +04:00
parent d208236994
commit fe618bd652
310 changed files with 1133 additions and 1141 deletions

View File

@@ -16,7 +16,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
namespace MTP {
// How much time to wait for some more requests, when sending msg acks.
constexpr auto kAckSendWaiting = TimeMs(10000);
constexpr auto kAckSendWaiting = crl::time(10000);
class Instance;
@@ -239,7 +239,7 @@ private:
not_null<Connection*> _owner;
ConnectionPointer _connection;
std::vector<TestConnection> _testConnections;
TimeMs _startedConnectingAt = 0;
crl::time _startedConnectingAt = 0;
base::Timer _retryTimer; // exp retry timer
int _retryTimeout = 1;
@@ -251,15 +251,15 @@ private:
base::Timer _waitForConnectedTimer;
base::Timer _waitForReceivedTimer;
base::Timer _waitForBetterTimer;
TimeMs _waitForReceived = 0;
TimeMs _waitForConnected = 0;
TimeMs firstSentAt = -1;
crl::time _waitForReceived = 0;
crl::time _waitForConnected = 0;
crl::time firstSentAt = -1;
QVector<MTPlong> ackRequestData, resendRequestData;
mtpPingId _pingId = 0;
mtpPingId _pingIdToSend = 0;
TimeMs _pingSendAt = 0;
crl::time _pingSendAt = 0;
mtpMsgId _pingMsgId = 0;
base::Timer _pingSender;