This repository was archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathtestpolyfills.js
187 lines (168 loc) · 4.38 KB
/
testpolyfills.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree.
*/
/* More information about these options at jshint.com/docs/options */
'use strict';
Function.prototype.bind = Function.prototype.bind || function(thisp) {
var fn = this;
var suppliedArgs = Array.prototype.slice.call(arguments, 1);
return function() {
return fn.apply(thisp,
suppliedArgs.concat(Array.prototype.slice.call(arguments)));
};
};
if (!window.performance) {
window.performance = function() {};
window.performance.now = function() {
return 0;
};
}
window.RTCSessionDescription = window.RTCSessionDescription || function(input) {
this.type = input.type;
this.sdp = input.sdp;
};
window.RTCIceCandidate = window.RTCIceCandidate || function(candidate) {
this.sdpMLineIndex = candidate.sdpMLineIndex;
this.candidate = candidate.candidate;
};
var PROMISE_STATE = {
PENDING: 0,
FULLFILLED: 1,
REJECTED: 2
};
var MyPromise = function(executor) {
this.state_ = PROMISE_STATE.PENDING;
this.resolveCallback_ = null;
this.rejectCallback_ = null;
this.value_ = null;
this.reason_ = null;
executor(this.onResolve_.bind(this), this.onReject_.bind(this));
};
MyPromise.all = function(promises) {
var values = new Array(promises.length);
return new MyPromise(function(values, resolve, reject) {
function onResolve(values, index, value) {
values[index] = value || null;
for (var i = 0; i < values.length; ++i) {
if (values[i] === undefined) {
return;
}
}
resolve(values);
}
for (var i = 0; i < promises.length; ++i) {
promises[i].then(onResolve.bind(null, values, i), reject);
}
}.bind(null, values));
};
/* jshint ignore:start */
MyPromise.resolve = function(value) {
return new MyPromise(function(resolve) {
resolve(value);
});
};
MyPromise.reject = function(error) {
return new MyPromise(function(resolve, reject) {
reject(error);
});
};
/* jshint ignore:end */
MyPromise.prototype.then = function(onResolve, onReject) {
switch (this.state_) {
case PROMISE_STATE.PENDING:
this.resolveCallback_ = onResolve;
this.rejectCallback_ = onReject;
break;
case PROMISE_STATE.FULLFILLED:
onResolve(this.value_);
break;
case PROMISE_STATE.REJECTED:
if (onReject) {
onReject(this.reason_);
}
break;
default:
onReject(this.reason_);
}
return this;
};
MyPromise.prototype.catch = function(onReject) {
switch (this.state_) {
case PROMISE_STATE.PENDING:
this.rejectCallback_ = onReject;
break;
case PROMISE_STATE.FULLFILLED:
break;
case PROMISE_STATE.REJECTED:
onReject(this.reason_);
break;
default:
onReject(this.reason_);
}
return this;
};
MyPromise.prototype.onResolve_ = function(value) {
if (this.state_ !== PROMISE_STATE.PENDING) {
return;
}
this.state_ = PROMISE_STATE.FULLFILLED;
if (this.resolveCallback_) {
this.resolveCallback_(value);
} else {
this.value_ = value;
}
};
MyPromise.prototype.onReject_ = function(reason) {
if (this.state_ !== PROMISE_STATE.PENDING) {
return;
}
this.state_ = PROMISE_STATE.REJECTED;
if (this.rejectCallback_) {
this.rejectCallback_(reason);
} else {
this.reason_ = reason;
}
};
window.Promise = window.Promise || MyPromise;
// Provide a shim for phantomjs, where chrome is not defined.
var myChrome = (function() {
var onConnectCallback_;
return {
app: {
runtime: {
onLaunched: {
addListener: function(callback) {
console.log(
'chrome.app.runtime.onLaunched.addListener called:' + callback);
}
}
},
window: {
create: function(fileName, callback) {
console.log(
'chrome.window.create called: ' +
fileName + ', ' + callback);
}
}
},
runtime: {
onConnect: {
addListener: function(callback) {
console.log(
'chrome.runtime.onConnect.addListener called: ' + callback);
onConnectCallback_ = callback;
}
}
},
callOnConnect: function(port) {
if (onConnectCallback_) {
onConnectCallback_(port);
}
}
};
})();
window.chrome = myChrome;