Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: third_party/WebKit/Source/core/timing/Performance.idl

Issue 1873323002: Have bindings layer assume and insist that all interface types are GCed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2012 Intel Inc. All rights reserved. 3 * Copyright (C) 2012 Intel Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 18 matching lines...) Expand all
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 // https://w3c.github.io/hr-time/#the-performance-interface 32 // https://w3c.github.io/hr-time/#the-performance-interface
33 33
34 // TODO(philipj): This interface should be [Exposed=(Window,Worker)]. Doing that 34 // TODO(philipj): This interface should be [Exposed=(Window,Worker)]. Doing that
35 // would allow the WorkerPerformance interface to be merged into this. 35 // would allow the WorkerPerformance interface to be merged into this.
36 // TODO(philipj): None of the optional DOMString arguments in this interface 36 // TODO(philipj): None of the optional DOMString arguments in this interface
37 // should have a default value. 37 // should have a default value.
38 [ 38 [
39 GarbageCollected
40 ] interface Performance : EventTarget { 39 ] interface Performance : EventTarget {
41 DOMHighResTimeStamp now(); 40 DOMHighResTimeStamp now();
42 41
43 // Performance Timeline 42 // Performance Timeline
44 // https://w3c.github.io/performance-timeline/#the-performance-interface 43 // https://w3c.github.io/performance-timeline/#the-performance-interface
45 // TODO(philipj): getEntries() should take an optional FilterOptions argumen t. 44 // TODO(philipj): getEntries() should take an optional FilterOptions argumen t.
46 [MeasureAs=UnprefixedPerformanceTimeline] PerformanceEntryList getEntries(); 45 [MeasureAs=UnprefixedPerformanceTimeline] PerformanceEntryList getEntries();
47 [MeasureAs=UnprefixedPerformanceTimeline] PerformanceEntryList getEntriesByT ype(DOMString entryType); 46 [MeasureAs=UnprefixedPerformanceTimeline] PerformanceEntryList getEntriesByT ype(DOMString entryType);
48 [MeasureAs=UnprefixedPerformanceTimeline] PerformanceEntryList getEntriesByN ame(DOMString name, optional DOMString entryType = null); 47 [MeasureAs=UnprefixedPerformanceTimeline] PerformanceEntryList getEntriesByN ame(DOMString name, optional DOMString entryType = null);
49 48
(...skipping 24 matching lines...) Expand all
74 // Frame Timing 73 // Frame Timing
75 // https://w3c.github.io/frame-timing/#extensions-performance-interface 74 // https://w3c.github.io/frame-timing/#extensions-performance-interface
76 [RuntimeEnabled=FrameTimingSupport, MeasureAs=PerformanceFrameTiming] void c learFrameTimings(); 75 [RuntimeEnabled=FrameTimingSupport, MeasureAs=PerformanceFrameTiming] void c learFrameTimings();
77 [RuntimeEnabled=FrameTimingSupport, MeasureAs=PerformanceFrameTiming] void s etFrameTimingBufferSize(unsigned long maxSize); 76 [RuntimeEnabled=FrameTimingSupport, MeasureAs=PerformanceFrameTiming] void s etFrameTimingBufferSize(unsigned long maxSize);
78 [RuntimeEnabled=FrameTimingSupport] attribute EventHandler onframetimingbuff erfull; 77 [RuntimeEnabled=FrameTimingSupport] attribute EventHandler onframetimingbuff erfull;
79 78
80 // TODO(philipj): There is no spec for the Memory Info API, see blink-dev: 79 // TODO(philipj): There is no spec for the Memory Info API, see blink-dev:
81 // https://groups.google.com/a/chromium.org/d/msg/blink-dev/g5YRCGpC9vs/b4OJ z71NmPwJ 80 // https://groups.google.com/a/chromium.org/d/msg/blink-dev/g5YRCGpC9vs/b4OJ z71NmPwJ
82 [Measure] readonly attribute MemoryInfo memory; 81 [Measure] readonly attribute MemoryInfo memory;
83 }; 82 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/timing/MemoryInfo.idl ('k') | third_party/WebKit/Source/core/timing/PerformanceEntry.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698