2012-09-10 11:14: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/. */
|
|
|
|
|
2014-02-06 18:28:14 +00:00
|
|
|
[Func="mozilla::dom::time::TimeManager::PrefEnabled"]
|
2013-06-12 07:00:07 +00:00
|
|
|
interface MozTimeManager {
|
2012-09-11 06:05:00 +00:00
|
|
|
/* Set the system time.
|
|
|
|
*
|
|
|
|
* The |time| argument can be either a Date object or a number.
|
|
|
|
*
|
2012-09-18 14:38:06 +00:00
|
|
|
* - If |time| is a number, it's interpreted as milliseconds
|
|
|
|
* since the epoch (midnight UTC on January 1, 1970).
|
|
|
|
* - If |time| is a Date object, |set(time)| is equivalent to
|
2012-09-11 06:05:00 +00:00
|
|
|
* |set(time.getTime())|.
|
|
|
|
*/
|
2013-06-12 07:00:07 +00:00
|
|
|
void set(Date time);
|
|
|
|
void set(double time);
|
2012-09-10 11:14:00 +00:00
|
|
|
};
|