Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
848 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | 'use strict';
|
---|
| 2 | /**
|
---|
| 3 | * @license Angular v12.0.0-next.0
|
---|
| 4 | * (c) 2010-2020 Google LLC. https://angular.io/
|
---|
| 5 | * License: MIT
|
---|
| 6 | */
|
---|
| 7 | /**
|
---|
| 8 | * @license
|
---|
| 9 | * Copyright Google LLC All Rights Reserved.
|
---|
| 10 | *
|
---|
| 11 | * Use of this source code is governed by an MIT-style license that can be
|
---|
| 12 | * found in the LICENSE file at https://angular.io/license
|
---|
| 13 | */
|
---|
| 14 | Zone.__load_patch('getUserMedia', (global, Zone, api) => {
|
---|
| 15 | function wrapFunctionArgs(func, source) {
|
---|
| 16 | return function () {
|
---|
| 17 | const args = Array.prototype.slice.call(arguments);
|
---|
| 18 | const wrappedArgs = api.bindArguments(args, source ? source : func.name);
|
---|
| 19 | return func.apply(this, wrappedArgs);
|
---|
| 20 | };
|
---|
| 21 | }
|
---|
| 22 | let navigator = global['navigator'];
|
---|
| 23 | if (navigator && navigator.getUserMedia) {
|
---|
| 24 | navigator.getUserMedia = wrapFunctionArgs(navigator.getUserMedia);
|
---|
| 25 | }
|
---|
| 26 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.