| Index: Source/core/timing/WorkerPerformance.idl
|
| diff --git a/Source/core/timing/WorkerPerformance.idl b/Source/core/timing/WorkerPerformance.idl
|
| index 4352b5e1adb382c63ecbefb78e6b76255ae9225e..07c17c41ac89768bac3d461d4e4bd662130605a9 100644
|
| --- a/Source/core/timing/WorkerPerformance.idl
|
| +++ b/Source/core/timing/WorkerPerformance.idl
|
| @@ -28,29 +28,40 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| +// https://w3c.github.io/hr-time/#the-performance-interface
|
| +
|
| +// TODO(philipj): This interface should be merged into Performance.
|
| +// TODO(philipj): None of the optional DOMString arguments in this interface
|
| +// should have a default value.
|
| [
|
| GarbageCollected,
|
| NoInterfaceObject
|
| ] interface WorkerPerformance : EventTarget {
|
| - // See https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/HighResolutionTime2/Overview.html for details.
|
| - double now();
|
| + DOMHighResTimeStamp now();
|
|
|
| - [RuntimeEnabled=ServiceWorkerPerformanceTimeline] sequence<PerformanceEntry> getEntries();
|
| - [RuntimeEnabled=ServiceWorkerPerformanceTimeline] sequence<PerformanceEntry> getEntriesByType(DOMString entryType);
|
| - [RuntimeEnabled=ServiceWorkerPerformanceTimeline] sequence<PerformanceEntry> getEntriesByName(DOMString name, optional DOMString entryType = null);
|
| + // Performance Timeline
|
| + // https://w3c.github.io/performance-timeline/#the-performance-interface
|
| + // TODO(philipj): getEntries() should take an optional FilterOptions argument.
|
| + [RuntimeEnabled=ServiceWorkerPerformanceTimeline] PerformanceEntryList getEntries();
|
| + [RuntimeEnabled=ServiceWorkerPerformanceTimeline] PerformanceEntryList getEntriesByType(DOMString entryType);
|
| + [RuntimeEnabled=ServiceWorkerPerformanceTimeline] PerformanceEntryList getEntriesByName(DOMString name, optional DOMString entryType = null);
|
|
|
| - // See http://www.w3.org/TR/resource-timing/
|
| + // Resource Timing
|
| + // https://w3c.github.io/resource-timing/#extensions-performance-interface
|
| + // TODO(philipj): Unprefix these APIs.
|
| [RuntimeEnabled=ServiceWorkerPerformanceTimeline, MeasureAs=PrefixedPerformanceClearResourceTimings] void webkitClearResourceTimings();
|
| [RuntimeEnabled=ServiceWorkerPerformanceTimeline, MeasureAs=PrefixedPerformanceSetResourceTimingBufferSize] void webkitSetResourceTimingBufferSize(unsigned long maxSize);
|
| [RuntimeEnabled=ServiceWorkerPerformanceTimeline] attribute EventHandler onwebkitresourcetimingbufferfull;
|
|
|
| - // See http://www.w3.org/TR/2012/CR-user-timing-20120726/
|
| + // User Timing
|
| + // https://w3c.github.io/user-timing/#extensions-performance-interface
|
| [RuntimeEnabled=ServiceWorkerPerformanceTimeline, RaisesException] void mark(DOMString markName);
|
| [RuntimeEnabled=ServiceWorkerPerformanceTimeline] void clearMarks(optional DOMString markName = null);
|
|
|
| [RuntimeEnabled=ServiceWorkerPerformanceTimeline, RaisesException] void measure(DOMString measureName, optional DOMString startMark = null, optional DOMString endMark = null);
|
| [RuntimeEnabled=ServiceWorkerPerformanceTimeline] void clearMeasures(optional DOMString measureName = null);
|
|
|
| + // TODO(philipj): There is no spec for the Memory Info API, see blink-dev:
|
| + // https://groups.google.com/a/chromium.org/d/msg/blink-dev/g5YRCGpC9vs/b4OJz71NmPwJ
|
| [RuntimeEnabled=MemoryInfoInWorkers] readonly attribute MemoryInfo memory;
|
| };
|
| -
|
|
|