2012-02-17 02:44:00 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
|
|
|
/* 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 "Hal.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace hal_impl {
|
|
|
|
|
|
|
|
void
|
2012-09-25 20:51:29 -07:00
|
|
|
AdjustSystemClock(int64_t aDeltaMilliseconds)
|
2012-02-17 02:44:00 -08:00
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
SetTimezone(const nsCString& aTimezoneSpec)
|
|
|
|
{}
|
|
|
|
|
2012-08-23 02:00:00 -07:00
|
|
|
nsCString
|
|
|
|
GetTimezone()
|
|
|
|
{
|
|
|
|
return EmptyCString();
|
|
|
|
}
|
|
|
|
|
2013-10-15 01:43:53 -07:00
|
|
|
int32_t
|
|
|
|
GetTimezoneOffset()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-23 10:00:32 -07:00
|
|
|
void
|
2012-10-23 00:15:43 -07:00
|
|
|
EnableSystemClockChangeNotifications()
|
2012-09-23 10:00:32 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-23 00:15:43 -07:00
|
|
|
DisableSystemClockChangeNotifications()
|
2012-09-23 10:00:32 -07:00
|
|
|
{
|
|
|
|
}
|
2012-10-23 00:15:43 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
EnableSystemTimezoneChangeNotifications()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DisableSystemTimezoneChangeNotifications()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-02-17 02:44:00 -08:00
|
|
|
} // namespace hal_impl
|
|
|
|
} // namespace mozilla
|