mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 08:18:41 +09:00
DevTools - network - implement the secureConnectionStart property for the PerformanceTiming
https://github.com/MoonchildProductions/moebius/pull/116 ("/testing" and "/toolkit" in in the previous commit)
This commit is contained in:
parent
38e95f9e35
commit
54f2e6eafd
32 changed files with 263 additions and 13 deletions
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include "nsAHttpTransaction.h"
|
||||
#include "mozilla/Attributes.h"
|
||||
#include "TimingStruct.h"
|
||||
|
||||
// This is the minimal nsAHttpTransaction implementation. A NullHttpTransaction
|
||||
// can be used to drive connection level semantics (such as SSL handshakes
|
||||
|
|
@ -49,6 +50,8 @@ public:
|
|||
return PR_SecondsToInterval(15);
|
||||
}
|
||||
|
||||
TimingStruct Timings() { return mTimings; }
|
||||
|
||||
protected:
|
||||
virtual ~NullHttpTransaction();
|
||||
|
||||
|
|
@ -68,6 +71,7 @@ private:
|
|||
Atomic<uint32_t> mCapsToClear;
|
||||
bool mIsDone;
|
||||
bool mClaimed;
|
||||
TimingStruct mTimings;
|
||||
|
||||
protected:
|
||||
RefPtr<nsAHttpConnection> mConnection;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue