diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-04-29 14:44:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-29 14:44:02 +0200 |
commit | dc35e5c26dfa8c7fe6d27f7bc96f7a6e3c02de9b (patch) | |
tree | 56d8df17bdaa6a4558c7b0ed887c9302766f347a /dom/performance/Performance.cpp | |
parent | 65a580a4efedf51cc542fff8c12b487a2113b987 (diff) | |
parent | bdb4ff581677ad1cd411b55a68c87534f9a64882 (diff) | |
download | UXP-dc35e5c26dfa8c7fe6d27f7bc96f7a6e3c02de9b.tar UXP-dc35e5c26dfa8c7fe6d27f7bc96f7a6e3c02de9b.tar.gz UXP-dc35e5c26dfa8c7fe6d27f7bc96f7a6e3c02de9b.tar.lz UXP-dc35e5c26dfa8c7fe6d27f7bc96f7a6e3c02de9b.tar.xz UXP-dc35e5c26dfa8c7fe6d27f7bc96f7a6e3c02de9b.zip |
Merge pull request #292 from janekptacijarabaci/js_dom_performance-observer_1
moebius#157: The Performance Observer (improvements)
Diffstat (limited to 'dom/performance/Performance.cpp')
-rwxr-xr-x | dom/performance/Performance.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/dom/performance/Performance.cpp b/dom/performance/Performance.cpp index 8dc239b05..497bdea27 100755 --- a/dom/performance/Performance.cpp +++ b/dom/performance/Performance.cpp @@ -38,27 +38,6 @@ using namespace workers; namespace { -// Helper classes -class MOZ_STACK_CLASS PerformanceEntryComparator final -{ -public: - bool Equals(const PerformanceEntry* aElem1, - const PerformanceEntry* aElem2) const - { - MOZ_ASSERT(aElem1 && aElem2, - "Trying to compare null performance entries"); - return aElem1->StartTime() == aElem2->StartTime(); - } - - bool LessThan(const PerformanceEntry* aElem1, - const PerformanceEntry* aElem2) const - { - MOZ_ASSERT(aElem1 && aElem2, - "Trying to compare null performance entries"); - return aElem1->StartTime() < aElem2->StartTime(); - } -}; - class PrefEnabledRunnable final : public WorkerCheckAPIExposureOnMainThreadRunnable { |