summaryrefslogtreecommitdiffstats
path: root/dom/performance/PerformanceMainThread.h
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-29 12:07:20 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-29 12:07:20 +0200
commit7ee501103ad2efe1d28ef3c10b4111a685746c06 (patch)
tree11a8b24d352d2a457b6c3a060c2c3d338391093c /dom/performance/PerformanceMainThread.h
parentde9560af3e0e0d0dc93c5401c9b6ca2f0a173e36 (diff)
downloadUXP-7ee501103ad2efe1d28ef3c10b4111a685746c06.tar
UXP-7ee501103ad2efe1d28ef3c10b4111a685746c06.tar.gz
UXP-7ee501103ad2efe1d28ef3c10b4111a685746c06.tar.lz
UXP-7ee501103ad2efe1d28ef3c10b4111a685746c06.tar.xz
UXP-7ee501103ad2efe1d28ef3c10b4111a685746c06.zip
Bug 1322966 - Cleanup performance.cpp
https://hg.mozilla.org/mozilla-central/rev/0ad76084c4c3
Diffstat (limited to 'dom/performance/PerformanceMainThread.h')
-rw-r--r--dom/performance/PerformanceMainThread.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/dom/performance/PerformanceMainThread.h b/dom/performance/PerformanceMainThread.h
index 84773f29b..fcaa6b903 100644
--- a/dom/performance/PerformanceMainThread.h
+++ b/dom/performance/PerformanceMainThread.h
@@ -17,8 +17,7 @@ class PerformanceMainThread final : public Performance
public:
PerformanceMainThread(nsPIDOMWindowInner* aWindow,
nsDOMNavigationTiming* aDOMTiming,
- nsITimedChannel* aChannel,
- Performance* aParentPerformance);
+ nsITimedChannel* aChannel);
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(PerformanceMainThread,
@@ -51,11 +50,6 @@ public:
return mChannel;
}
- virtual Performance* GetParentPerformance() const override
- {
- return mParentPerformance;
- }
-
protected:
~PerformanceMainThread();
@@ -77,7 +71,6 @@ protected:
nsCOMPtr<nsITimedChannel> mChannel;
RefPtr<PerformanceTiming> mTiming;
RefPtr<PerformanceNavigation> mNavigation;
- RefPtr<Performance> mParentPerformance;
JS::Heap<JSObject*> mMozMemory;
};