File tree 3 files changed +6
-6
lines changed
dom/src/main/scala/org/scalajs/dom
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15766,8 +15766,8 @@ Performance[JC] def clearResourceTimings(): Unit
15766
15766
Performance[JC] def getEntries(): js.Array[PerformanceEntry]
15767
15767
Performance[JC] def getEntriesByName(name: String, `type`: String?): js.Array[PerformanceEntry]
15768
15768
Performance[JC] def getEntriesByType(entryType: String): js.Array[PerformanceEntry]
15769
- Performance[JC] def getMarks(markName: String?): js.Dynamic (@deprecated in 2.4 .0)
15770
- Performance[JC] def getMeasures(measureName: String?): js.Dynamic (@deprecated in 2.4 .0)
15769
+ Performance[JC] def getMarks(markName: String?): js.Dynamic (@deprecated in 2.8 .0)
15770
+ Performance[JC] def getMeasures(measureName: String?): js.Dynamic (@deprecated in 2.8 .0)
15771
15771
Performance[JC] def mark(markName: String): PerformanceMark
15772
15772
Performance[JC] def measure(measureName: String, startMarkName: String?, endMarkName: String?): PerformanceMeasure
15773
15773
Performance[JC] def navigation: PerformanceNavigation
Original file line number Diff line number Diff line change @@ -15766,8 +15766,8 @@ Performance[JC] def clearResourceTimings(): Unit
15766
15766
Performance[JC] def getEntries(): js.Array[PerformanceEntry]
15767
15767
Performance[JC] def getEntriesByName(name: String, `type`: String?): js.Array[PerformanceEntry]
15768
15768
Performance[JC] def getEntriesByType(entryType: String): js.Array[PerformanceEntry]
15769
- Performance[JC] def getMarks(markName: String?): js.Dynamic (@deprecated in 2.4 .0)
15770
- Performance[JC] def getMeasures(measureName: String?): js.Dynamic (@deprecated in 2.4 .0)
15769
+ Performance[JC] def getMarks(markName: String?): js.Dynamic (@deprecated in 2.8 .0)
15770
+ Performance[JC] def getMeasures(measureName: String?): js.Dynamic (@deprecated in 2.8 .0)
15771
15771
Performance[JC] def mark(markName: String): PerformanceMark
15772
15772
Performance[JC] def measure(measureName: String, startMarkName: String?, endMarkName: String?): PerformanceMeasure
15773
15773
Performance[JC] def navigation: PerformanceNavigation
Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ class Performance private[this] () extends js.Object {
34
34
/** Returns a JSON representation of the [[Performance ]] object. */
35
35
def toJSON (): js.Object = js.native
36
36
37
- @ deprecated(" No such API in the spec" , " 2.4 .0" )
37
+ @ deprecated(" No such API in the spec" , " 2.8 .0" )
38
38
def getMeasures (measureName : String = js.native): js.Dynamic = js.native
39
39
40
40
/** Removes all or specific [[PerformanceMark ]] objects from the browser's performance timeline. */
41
41
def clearMarks (markName : String = js.native): Unit = js.native
42
42
43
- @ deprecated(" No such API in the spec" , " 2.4 .0" )
43
+ @ deprecated(" No such API in the spec" , " 2.8 .0" )
44
44
def getMarks (markName : String = js.native): js.Dynamic = js.native
45
45
46
46
/** Removes all performance entries with an `entryType` of "resource" from the browser's performance timeline and sets
You can’t perform that action at this time.
0 commit comments