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)
|
|
|
|
|
2014-04-29 08:57:00 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TimeManager, mWindow)
|
2013-06-12 07:00:07 +00:00
|
|
|
|
|
|
|
JSObject*
|
2014-04-08 22:27:18 +00:00
|
|
|
TimeManager::WrapObject(JSContext* aCx)
|
2013-06-12 07:00:07 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return MozTimeManagerBinding::Wrap(aCx, this);
|
2013-06-12 07:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|