mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
153 lines
4.6 KiB
C++
153 lines
4.6 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef nsDOMNavigationTiming_h___
|
|
#define nsDOMNavigationTiming_h___
|
|
|
|
#include "nscore.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsCOMArray.h"
|
|
#include "mozilla/TimeStamp.h"
|
|
#include "nsIURI.h"
|
|
|
|
class nsDOMNavigationTimingClock;
|
|
|
|
typedef unsigned long long DOMTimeMilliSec;
|
|
typedef double DOMHighResTimeStamp;
|
|
typedef unsigned short nsDOMPerformanceNavigationType;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace PerformanceNavigation {
|
|
static const nsDOMPerformanceNavigationType TYPE_NAVIGATE = 0;
|
|
static const nsDOMPerformanceNavigationType TYPE_RELOAD = 1;
|
|
static const nsDOMPerformanceNavigationType TYPE_BACK_FORWARD = 2;
|
|
static const nsDOMPerformanceNavigationType TYPE_RESERVED = 255;
|
|
}
|
|
}
|
|
}
|
|
|
|
class nsDOMNavigationTiming
|
|
{
|
|
public:
|
|
nsDOMNavigationTiming();
|
|
|
|
NS_INLINE_DECL_REFCOUNTING(nsDOMNavigationTiming)
|
|
|
|
nsDOMPerformanceNavigationType GetType() const {
|
|
return mNavigationType;
|
|
}
|
|
uint16_t GetRedirectCount();
|
|
|
|
DOMTimeMilliSec GetRedirectStart();
|
|
DOMTimeMilliSec GetRedirectEnd();
|
|
DOMTimeMilliSec GetNavigationStart() const {
|
|
return mNavigationStart;
|
|
}
|
|
DOMTimeMilliSec GetUnloadEventStart();
|
|
DOMTimeMilliSec GetUnloadEventEnd();
|
|
DOMTimeMilliSec GetFetchStart() const {
|
|
return mFetchStart;
|
|
}
|
|
DOMTimeMilliSec GetDomLoading() const {
|
|
return mDOMLoading;
|
|
}
|
|
DOMTimeMilliSec GetDomInteractive() const {
|
|
return mDOMInteractive;
|
|
}
|
|
DOMTimeMilliSec GetDomContentLoadedEventStart() const {
|
|
return mDOMContentLoadedEventStart;
|
|
}
|
|
DOMTimeMilliSec GetDomContentLoadedEventEnd() const {
|
|
return mDOMContentLoadedEventEnd;
|
|
}
|
|
DOMTimeMilliSec GetDomComplete() const {
|
|
return mDOMComplete;
|
|
}
|
|
DOMTimeMilliSec GetLoadEventStart() const {
|
|
return mLoadEventStart;
|
|
}
|
|
DOMTimeMilliSec GetLoadEventEnd() const {
|
|
return mLoadEventEnd;
|
|
}
|
|
|
|
void NotifyNavigationStart();
|
|
void NotifyFetchStart(nsIURI* aURI, nsDOMPerformanceNavigationType aNavigationType);
|
|
void NotifyRedirect(nsIURI* aOldURI, nsIURI* aNewURI);
|
|
void NotifyBeforeUnload();
|
|
void NotifyUnloadAccepted(nsIURI* aOldURI);
|
|
void NotifyUnloadEventStart();
|
|
void NotifyUnloadEventEnd();
|
|
void NotifyLoadEventStart();
|
|
void NotifyLoadEventEnd();
|
|
|
|
// Document changes state to 'loading' before connecting to timing
|
|
void SetDOMLoadingTimeStamp(nsIURI* aURI, mozilla::TimeStamp aValue);
|
|
void NotifyDOMLoading(nsIURI* aURI);
|
|
void NotifyDOMInteractive(nsIURI* aURI);
|
|
void NotifyDOMComplete(nsIURI* aURI);
|
|
void NotifyDOMContentLoadedStart(nsIURI* aURI);
|
|
void NotifyDOMContentLoadedEnd(nsIURI* aURI);
|
|
DOMTimeMilliSec TimeStampToDOM(mozilla::TimeStamp aStamp) const;
|
|
DOMTimeMilliSec TimeStampToDOMOrFetchStart(mozilla::TimeStamp aStamp) const;
|
|
|
|
inline DOMHighResTimeStamp TimeStampToDOMHighRes(mozilla::TimeStamp aStamp)
|
|
{
|
|
mozilla::TimeDuration duration = aStamp - mNavigationStartTimeStamp;
|
|
return duration.ToMilliseconds();
|
|
}
|
|
|
|
private:
|
|
nsDOMNavigationTiming(const nsDOMNavigationTiming &){};
|
|
~nsDOMNavigationTiming();
|
|
|
|
void Clear();
|
|
bool ReportRedirects();
|
|
|
|
nsCOMPtr<nsIURI> mUnloadedURI;
|
|
nsCOMPtr<nsIURI> mLoadedURI;
|
|
nsCOMArray<nsIURI> mRedirects;
|
|
|
|
typedef enum { NOT_CHECKED,
|
|
CHECK_PASSED,
|
|
NO_REDIRECTS,
|
|
CHECK_FAILED} RedirectCheckState;
|
|
RedirectCheckState mRedirectCheck;
|
|
int16_t mRedirectCount;
|
|
|
|
nsDOMPerformanceNavigationType mNavigationType;
|
|
DOMTimeMilliSec mNavigationStart;
|
|
mozilla::TimeStamp mNavigationStartTimeStamp;
|
|
DOMTimeMilliSec DurationFromStart();
|
|
|
|
DOMTimeMilliSec mFetchStart;
|
|
DOMTimeMilliSec mRedirectStart;
|
|
DOMTimeMilliSec mRedirectEnd;
|
|
DOMTimeMilliSec mBeforeUnloadStart;
|
|
DOMTimeMilliSec mUnloadStart;
|
|
DOMTimeMilliSec mUnloadEnd;
|
|
DOMTimeMilliSec mLoadEventStart;
|
|
DOMTimeMilliSec mLoadEventEnd;
|
|
|
|
DOMTimeMilliSec mDOMLoading;
|
|
DOMTimeMilliSec mDOMInteractive;
|
|
DOMTimeMilliSec mDOMContentLoadedEventStart;
|
|
DOMTimeMilliSec mDOMContentLoadedEventEnd;
|
|
DOMTimeMilliSec mDOMComplete;
|
|
|
|
// Booleans to keep track of what things we've already been notified
|
|
// about. We don't update those once we've been notified about them
|
|
// once.
|
|
bool mLoadEventStartSet : 1;
|
|
bool mLoadEventEndSet : 1;
|
|
bool mDOMLoadingSet : 1;
|
|
bool mDOMInteractiveSet : 1;
|
|
bool mDOMContentLoadedEventStartSet : 1;
|
|
bool mDOMContentLoadedEventEndSet : 1;
|
|
bool mDOMCompleteSet : 1;
|
|
};
|
|
|
|
#endif /* nsDOMNavigationTiming_h___ */
|