mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
65 lines
1.4 KiB
C++
65 lines
1.4 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 "mozilla/Hal.h"
|
||
|
#include "mozilla/ClearOnShutdown.h"
|
||
|
#include "DateCacheCleaner.h"
|
||
|
|
||
|
#include "nsIJSContextStack.h"
|
||
|
#include "mozilla/StaticPtr.h"
|
||
|
|
||
|
using namespace mozilla::hal;
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace dom {
|
||
|
namespace time {
|
||
|
|
||
|
class DateCacheCleaner : public SystemTimeChangeObserver
|
||
|
{
|
||
|
public:
|
||
|
DateCacheCleaner()
|
||
|
{
|
||
|
RegisterSystemTimeChangeObserver(this);
|
||
|
}
|
||
|
|
||
|
~DateCacheCleaner()
|
||
|
{
|
||
|
UnregisterSystemTimeChangeObserver(this);
|
||
|
}
|
||
|
void Notify(const SystemTimeChange& aReason)
|
||
|
{
|
||
|
if (aReason == SYS_TIME_CHANGE_CLOCK) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
nsCOMPtr<nsIThreadJSContextStack> stack =
|
||
|
do_GetService("@mozilla.org/js/xpc/ContextStack;1");
|
||
|
if (!stack) {
|
||
|
NS_WARNING("Failed to get JSContextStack");
|
||
|
}
|
||
|
JSContext *cx = stack->GetSafeJSContext();
|
||
|
if (!cx) {
|
||
|
NS_WARNING("Failed to GetSafeJSContext");
|
||
|
}
|
||
|
JS_ClearDateCaches(cx);
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
StaticAutoPtr<DateCacheCleaner> sDateCacheCleaner;
|
||
|
|
||
|
void
|
||
|
InitializeDateCacheCleaner()
|
||
|
{
|
||
|
if (!sDateCacheCleaner) {
|
||
|
sDateCacheCleaner = new DateCacheCleaner();
|
||
|
ClearOnShutdown(&sDateCacheCleaner);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // namespace time
|
||
|
} // namespace dom
|
||
|
} // namespace mozilla
|