Bug 1506376, remove useless private: from VsyncEvent struct r=mattwoodrow

Depends on D61083

Differential Revision: https://phabricator.services.mozilla.com/D62032

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Olli Pettay 2020-02-14 13:55:02 +00:00
Родитель 6e2d5cc4ae
Коммит 0d9b7960a2
1 изменённых файлов: 0 добавлений и 16 удалений

Просмотреть файл

@ -20,12 +20,7 @@ class CompositorVsyncDispatcher;
class VsyncIdType {};
typedef layers::BaseTransactionId<VsyncIdType> VsyncId;
namespace layout {
class PVsyncChild;
}
namespace gfx {
class PVsyncBridgeParent;
// Controls how and when to enable/disable vsync. Lives as long as the
// gfxPlatform does on the parent process
@ -96,24 +91,13 @@ class VsyncSource {
} // namespace gfx
namespace recordreplay {
namespace child {
void NotifyVsyncObserver();
}
} // namespace recordreplay
struct VsyncEvent {
VsyncId mId;
TimeStamp mTime;
private:
VsyncEvent(const VsyncId& aId, const TimeStamp& aTime)
: mId(aId), mTime(aTime) {}
VsyncEvent() {}
friend class gfx::VsyncSource::Display;
friend class gfx::PVsyncBridgeParent;
friend class layout::PVsyncChild;
friend void recordreplay::child::NotifyVsyncObserver();
};
} // namespace mozilla