mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 13:43:44 +00:00
359792367d
- Bug 1199289 - r=valentin,dao (bfaf064b19) - Bug 1202312 - Remove an old forward declaration and typedef. r=kats (1fc905fe5d) - Bug 1170894 - Implement nsIFrameLoader::SwitchProcessAndLoadURI. r=smaug (194b0e81f6) - Bug 1199765 - Add support to TabParent for querying the active state of remote browsers. r=Mossop (a9b24d4083) - Bug 1165796 - Part 1: Make PrefEnabledRunnable usable for other preference names. r=baku (2e83d3ecc7) - Bug 1168933 - Send referrer when downloading worker script. r=khuey (69e48dea42) - Bug 1165796 - Part 2: Implement PerformanceObserver.r=baku (9f16f01051) - Bug 1165796 - Part 0: Unified build fix. r=baku (0605bf4397) - Bug 1165796 - Part 3: Fix PerformanceObserverEntryList::GetEntries filtering for initiatorType. r=baku (12d07cee20) - Bug 1192787 - Readd performance enabled test to ResponseEndHighRes; r=baku (f75fbaba13) - Bug 1197003 - Part 1 - PerformanceObserver::Disconenct() should be called before mPerformance is destroyed. r=baku (d4dd3a960b) - Bug 1195700 - Disconnect performance observer before being destroyed to avoid crash. r=baku (e9e743d4d2) - Bug 1197003 - Part 2 - Implement processing algorithm for PerformanceObserver to notify a batch of entries. r=baku (4a0432765f) - Bug 1155761 followup: Annotate nsPerformance::InsertUserEntry as 'override'. rs=ehsan (0552b7f75f)
97 lines
2.0 KiB
C++
97 lines
2.0 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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 mozilla_dom_PerformanceEntry_h___
|
|
#define mozilla_dom_PerformanceEntry_h___
|
|
|
|
#include "nsDOMNavigationTiming.h"
|
|
#include "nsString.h"
|
|
#include "nsWrapperCache.h"
|
|
|
|
class nsISupports;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
class PerformanceResourceTiming;
|
|
|
|
// http://www.w3.org/TR/performance-timeline/#performanceentry
|
|
class PerformanceEntry : public nsISupports,
|
|
public nsWrapperCache
|
|
{
|
|
protected:
|
|
virtual ~PerformanceEntry();
|
|
|
|
public:
|
|
PerformanceEntry(nsISupports* aParent,
|
|
const nsAString& aName,
|
|
const nsAString& aEntryType);
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(PerformanceEntry)
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
nsISupports* GetParentObject() const
|
|
{
|
|
return mParent;
|
|
}
|
|
|
|
void GetName(nsAString& aName) const
|
|
{
|
|
aName = mName;
|
|
}
|
|
|
|
const nsAString& GetName() const
|
|
{
|
|
return mName;
|
|
}
|
|
|
|
void SetName(const nsAString& aName)
|
|
{
|
|
mName = aName;
|
|
}
|
|
|
|
void GetEntryType(nsAString& aEntryType) const
|
|
{
|
|
aEntryType = mEntryType;
|
|
}
|
|
|
|
const nsAString& GetEntryType()
|
|
{
|
|
return mEntryType;
|
|
}
|
|
|
|
void SetEntryType(const nsAString& aEntryType)
|
|
{
|
|
mEntryType = aEntryType;
|
|
}
|
|
|
|
virtual DOMHighResTimeStamp StartTime() const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
virtual DOMHighResTimeStamp Duration() const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
virtual const PerformanceResourceTiming* ToResourceTiming() const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
protected:
|
|
nsCOMPtr<nsISupports> mParent;
|
|
nsString mName;
|
|
nsString mEntryType;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif /* mozilla_dom_PerformanceEntry_h___ */
|