diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-20 12:00:26 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-20 12:00:26 +0100 |
commit | 59f7a2cdb4f36f017586aa139a7fe8def39e777b (patch) | |
tree | 45779e58d11a2e540cb7db858c383d4471ab475b /dom/performance/Performance.h | |
parent | e3d81b698ea104e4b55ee618b931ea1311c04169 (diff) | |
download | UXP-59f7a2cdb4f36f017586aa139a7fe8def39e777b.tar UXP-59f7a2cdb4f36f017586aa139a7fe8def39e777b.tar.gz UXP-59f7a2cdb4f36f017586aa139a7fe8def39e777b.tar.lz UXP-59f7a2cdb4f36f017586aa139a7fe8def39e777b.tar.xz UXP-59f7a2cdb4f36f017586aa139a7fe8def39e777b.zip |
Issue #316 - Make the memory GC performance object conditional (WIP)
This was only added for GCubench and likely interfering with building
without devtools-server.
Diffstat (limited to 'dom/performance/Performance.h')
-rw-r--r-- | dom/performance/Performance.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dom/performance/Performance.h b/dom/performance/Performance.h index 4debecc90..c40dd8aff 100644 --- a/dom/performance/Performance.h +++ b/dom/performance/Performance.h @@ -96,8 +96,10 @@ public: IMPL_EVENT_HANDLER(resourcetimingbufferfull) +#ifdef MOZ_DEVTOOLS_SERVER virtual void GetMozMemory(JSContext *aCx, JS::MutableHandle<JSObject*> aObj) = 0; +#endif virtual nsDOMNavigationTiming* GetDOMTiming() const = 0; |