mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
5a78692b60
--HG-- rename : widget/shared/NativeKeyToDOMCodeName.h => widget/NativeKeyToDOMCodeName.h rename : widget/shared/NativeKeyToDOMKeyName.h => widget/NativeKeyToDOMKeyName.h rename : widget/shared/VsyncDispatcher.cpp => widget/VsyncDispatcher.cpp rename : widget/shared/VsyncDispatcher.h => widget/VsyncDispatcher.h rename : widget/shared/WidgetEventImpl.cpp => widget/WidgetEventImpl.cpp rename : widget/shared/nsShmImage.cpp => widget/nsShmImage.cpp rename : widget/shared/nsShmImage.h => widget/nsShmImage.h rename : widget/shared/x11/keysym2ucs.c => widget/x11/keysym2ucs.c rename : widget/shared/x11/keysym2ucs.h => widget/x11/keysym2ucs.h rename : widget/shared/x11/moz.build => widget/x11/moz.build
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "VsyncDispatcher.h"
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
#include "CompositorParent.h"
|
|
|
|
using namespace mozilla::layers;
|
|
|
|
namespace mozilla {
|
|
|
|
StaticRefPtr<VsyncDispatcher> sVsyncDispatcher;
|
|
|
|
/*static*/ VsyncDispatcher*
|
|
VsyncDispatcher::GetInstance()
|
|
{
|
|
if (!sVsyncDispatcher) {
|
|
sVsyncDispatcher = new VsyncDispatcher();
|
|
ClearOnShutdown(&sVsyncDispatcher);
|
|
}
|
|
|
|
return sVsyncDispatcher;
|
|
}
|
|
|
|
VsyncDispatcher::VsyncDispatcher()
|
|
{
|
|
|
|
}
|
|
|
|
VsyncDispatcher::~VsyncDispatcher()
|
|
{
|
|
}
|
|
|
|
void
|
|
VsyncDispatcher::AddCompositorVsyncObserver(VsyncObserver* aVsyncObserver)
|
|
{
|
|
MOZ_ASSERT(CompositorParent::IsInCompositorThread());
|
|
}
|
|
|
|
void
|
|
VsyncDispatcher::RemoveCompositorVsyncObserver(VsyncObserver* aVsyncObserver)
|
|
{
|
|
MOZ_ASSERT(CompositorParent::IsInCompositorThread());
|
|
}
|
|
|
|
} // namespace mozilla
|