2012-07-17 05:42:18 +04:00
|
|
|
/* -*- Mode: IDL; 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/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2015-11-19 17:04:47 +03:00
|
|
|
* http://w3c.github.io/hr-time/
|
2012-07-17 05:42:18 +04:00
|
|
|
*
|
2015-11-19 17:04:47 +03:00
|
|
|
* Copyright © 2015 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
|
|
* W3C liability, trademark and document use rules apply.
|
2012-07-17 05:42:18 +04:00
|
|
|
*/
|
|
|
|
|
2012-11-28 00:32:05 +04:00
|
|
|
typedef double DOMHighResTimeStamp;
|
2013-10-16 05:35:44 +04:00
|
|
|
typedef sequence <PerformanceEntry> PerformanceEntryList;
|
2012-07-17 05:42:18 +04:00
|
|
|
|
2014-08-30 03:50:06 +04:00
|
|
|
[Exposed=(Window,Worker)]
|
2012-07-17 05:42:18 +04:00
|
|
|
interface Performance {
|
2015-01-16 01:39:01 +03:00
|
|
|
[DependsOn=DeviceState, Affects=Nothing]
|
2012-11-28 00:32:05 +04:00
|
|
|
DOMHighResTimeStamp now();
|
2014-08-30 03:50:06 +04:00
|
|
|
};
|
2012-07-17 05:42:18 +04:00
|
|
|
|
2014-08-30 03:50:06 +04:00
|
|
|
[Exposed=Window]
|
|
|
|
partial interface Performance {
|
2012-12-26 02:00:15 +04:00
|
|
|
[Constant]
|
2012-07-17 05:42:18 +04:00
|
|
|
readonly attribute PerformanceTiming timing;
|
2012-12-26 02:00:15 +04:00
|
|
|
[Constant]
|
2012-07-17 05:42:18 +04:00
|
|
|
readonly attribute PerformanceNavigation navigation;
|
2013-07-26 20:00:49 +04:00
|
|
|
|
|
|
|
jsonifier;
|
2012-07-17 05:42:18 +04:00
|
|
|
};
|
2013-10-16 05:35:44 +04:00
|
|
|
|
2014-05-10 06:12:06 +04:00
|
|
|
// http://www.w3.org/TR/performance-timeline/#sec-window.performance-attribute
|
2015-05-25 19:53:07 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2013-10-16 05:35:44 +04:00
|
|
|
partial interface Performance {
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2013-10-16 05:35:44 +04:00
|
|
|
PerformanceEntryList getEntries();
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2013-10-16 05:35:44 +04:00
|
|
|
PerformanceEntryList getEntriesByType(DOMString entryType);
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2013-10-16 05:35:44 +04:00
|
|
|
PerformanceEntryList getEntriesByName(DOMString name, optional DOMString
|
|
|
|
entryType);
|
|
|
|
};
|
|
|
|
|
2014-05-10 06:12:06 +04:00
|
|
|
// http://www.w3.org/TR/resource-timing/#extensions-performance-interface
|
2014-08-30 03:50:06 +04:00
|
|
|
[Exposed=Window]
|
2013-10-16 05:35:44 +04:00
|
|
|
partial interface Performance {
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2013-10-16 05:35:44 +04:00
|
|
|
void clearResourceTimings();
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2013-10-16 05:35:44 +04:00
|
|
|
void setResourceTimingBufferSize(unsigned long maxSize);
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2014-05-10 06:12:06 +04:00
|
|
|
attribute EventHandler onresourcetimingbufferfull;
|
2013-10-16 05:35:44 +04:00
|
|
|
};
|
2015-02-04 08:46:23 +03:00
|
|
|
|
2015-03-23 22:19:52 +03:00
|
|
|
// GC microbenchmarks, pref-guarded, not for general use (bug 1125412)
|
|
|
|
[Exposed=Window]
|
|
|
|
partial interface Performance {
|
|
|
|
[Pref="dom.enable_memory_stats"]
|
|
|
|
readonly attribute object mozMemory;
|
|
|
|
};
|
|
|
|
|
2015-02-04 08:46:23 +03:00
|
|
|
// http://www.w3.org/TR/user-timing/
|
2015-05-25 19:53:07 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2015-02-04 08:46:23 +03:00
|
|
|
partial interface Performance {
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled", Throws]
|
2015-02-04 08:46:23 +03:00
|
|
|
void mark(DOMString markName);
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2015-02-04 08:46:23 +03:00
|
|
|
void clearMarks(optional DOMString markName);
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled", Throws]
|
2015-02-04 08:46:23 +03:00
|
|
|
void measure(DOMString measureName, optional DOMString startMark, optional DOMString endMark);
|
2016-06-09 20:04:42 +03:00
|
|
|
[Func="Performance::IsEnabled"]
|
2015-02-04 08:46:23 +03:00
|
|
|
void clearMeasures(optional DOMString measureName);
|
|
|
|
};
|
2015-08-18 01:13:20 +03:00
|
|
|
|