diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-24 14:06:04 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-24 14:06:04 +0200 |
commit | ac25827a87d86f1cf9e48aab6605f77a2c89041a (patch) | |
tree | c3533a008e606f4f6393e838b4305cf6d07f47d2 /widget | |
parent | c8b38a18031f6ae0fca8b2bef73daa86f6f96ae8 (diff) | |
download | uxp-ac25827a87d86f1cf9e48aab6605f77a2c89041a.tar.gz |
Remove SPS profiler.
- Conditionals and code blocks. (MOZ_ENABLE_PROFILER_SPS)
- Stub out several profiler-only functions.
Diffstat (limited to 'widget')
-rw-r--r-- | widget/VsyncDispatcher.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/widget/VsyncDispatcher.cpp b/widget/VsyncDispatcher.cpp index 5979466e8c..7bb32b89bd 100644 --- a/widget/VsyncDispatcher.cpp +++ b/widget/VsyncDispatcher.cpp @@ -11,11 +11,6 @@ #include "mozilla/layers/CompositorBridgeParent.h" #include "mozilla/layers/CompositorThread.h" -#ifdef MOZ_ENABLE_PROFILER_SPS -#include "GeckoProfiler.h" -#include "ProfilerMarkers.h" -#endif - namespace mozilla { CompositorVsyncDispatcher::CompositorVsyncDispatcher() @@ -35,11 +30,6 @@ CompositorVsyncDispatcher::~CompositorVsyncDispatcher() void CompositorVsyncDispatcher::NotifyVsync(TimeStamp aVsyncTimestamp) { - // In vsync thread -#ifdef MOZ_ENABLE_PROFILER_SPS - layers::CompositorBridgeParent::PostInsertVsyncProfilerMarker(aVsyncTimestamp); -#endif - MutexAutoLock lock(mCompositorObserverLock); if (mCompositorVsyncObserver) { mCompositorVsyncObserver->NotifyVsync(aVsyncTimestamp); |