Skip to content

Commit 84abdc3

Browse files
authored
Merge pull request #60 from beaufortfrancois/patch-1
Add CaptureHandleChangeEvent removal in Changelog
2 parents ee0cfbc + ab3fdf7 commit 84abdc3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

identity/explainer.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ The capturing application, VC-MAX, reads the capture-handle of the captured disp
103103
if (track.getCaptureHandle) { // Feature detection.
104104
// Subscribe to notifications of the capture-handle changing.
105105
track.oncapturehandlechange = (event) => {
106-
OnNewCaptureHandle(event.captureHandle());
106+
OnNewCaptureHandle(event.target.getCaptureHandle());
107107
};
108108
// Read the current capture-handle.
109109
OnNewCaptureHandle(track.getCaptureHandle());
@@ -229,3 +229,6 @@ API introduced and exposed as an origin trial.
229229
## Chrome m93
230230
* Capture handle previously exposed `track.getSettings().captureHandle`; now as `track.getCaptureHandle()`.
231231
* Events previously contained the capture handle as `event.captureHandle`, now as `event.captureHandle()`.
232+
233+
## Chrome m102
234+
* `CaptureHandleChangeEvent` has been replaced by a simple `Event`. <http://crbug.com/1322174>

0 commit comments

Comments
 (0)