29 lines
955 B
JavaScript
29 lines
955 B
JavaScript
goog.provide("goog.net.XhrLike");
|
|
goog.net.XhrLike = function() {
|
|
};
|
|
goog.net.XhrLike.OrNative;
|
|
goog.net.XhrLike.prototype.onreadystatechange;
|
|
goog.net.XhrLike.prototype.response;
|
|
goog.net.XhrLike.prototype.responseText;
|
|
goog.net.XhrLike.prototype.responseType;
|
|
goog.net.XhrLike.prototype.responseXML;
|
|
goog.net.XhrLike.prototype.readyState;
|
|
goog.net.XhrLike.prototype.status;
|
|
goog.net.XhrLike.prototype.statusText;
|
|
goog.net.XhrLike.prototype.open = function(method, url, opt_async, opt_user, opt_password) {
|
|
};
|
|
goog.net.XhrLike.prototype.send = function(opt_data) {
|
|
};
|
|
goog.net.XhrLike.prototype.abort = function() {
|
|
};
|
|
goog.net.XhrLike.prototype.setRequestHeader = function(header, value) {
|
|
};
|
|
goog.net.XhrLike.prototype.getResponseHeader = function(header) {
|
|
};
|
|
goog.net.XhrLike.prototype.getAllResponseHeaders = function() {
|
|
};
|
|
goog.net.XhrLike.prototype.setTrustToken = function(trustTokenAttribute) {
|
|
};
|
|
|
|
//# sourceMappingURL=goog.net.xhrlike.js.map
|