2012-09-11 06:05:00 +00:00
|
|
|
/* 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/. */
|
2012-09-28 06:02:28 +00:00
|
|
|
|
2012-09-11 06:05:00 +00:00
|
|
|
#include "TimeManager.h"
|
|
|
|
|
2013-08-22 06:30:38 +00:00
|
|
|
#include "mozilla/dom/Date.h"
|
2013-06-12 07:00:07 +00:00
|
|
|
#include "mozilla/dom/MozTimeManagerBinding.h"
|
|
|
|
#include "nsITimeService.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
2012-09-11 06:05:00 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace time {
|
|
|
|
|
2013-06-12 07:00:07 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(TimeManager)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
2012-09-11 06:05:00 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2013-06-12 07:00:07 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(TimeManager)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(TimeManager)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_1(TimeManager, mWindow)
|
|
|
|
|
|
|
|
JSObject*
|
|
|
|
TimeManager::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope)
|
|
|
|
{
|
|
|
|
return MozTimeManagerBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TimeManager::Set(Date& aDate)
|
|
|
|
{
|
|
|
|
Set(aDate.TimeStamp());
|
|
|
|
}
|
2012-09-11 06:05:00 +00:00
|
|
|
|
2013-06-12 07:00:07 +00:00
|
|
|
void
|
|
|
|
TimeManager::Set(double aTime)
|
|
|
|
{
|
2012-09-28 06:02:28 +00:00
|
|
|
nsCOMPtr<nsITimeService> timeService = do_GetService(TIMESERVICE_CONTRACTID);
|
|
|
|
if (timeService) {
|
2013-06-12 07:00:07 +00:00
|
|
|
timeService->Set(aTime);
|
2012-09-28 06:02:28 +00:00
|
|
|
}
|
2012-09-11 06:05:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace time
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|