2015-07-28 13:10:25 -07:00
|
|
|
library angular2_http.src.backends.browser_xhr;
|
2015-04-28 23:07:55 -07:00
|
|
|
|
2015-06-19 12:14:12 -07:00
|
|
|
import 'dart:html' show HttpRequest;
|
|
|
|
import 'package:angular2/di.dart';
|
2015-04-28 23:07:55 -07:00
|
|
|
|
2015-06-19 12:14:12 -07:00
|
|
|
@Injectable()
|
2015-06-24 00:27:07 -07:00
|
|
|
class BrowserXhr {
|
2015-07-27 17:26:28 -07:00
|
|
|
HttpRequest build() {
|
|
|
|
return new HttpRequest();
|
|
|
|
}
|
2015-06-19 12:14:12 -07:00
|
|
|
}
|