HttpFactory
when injecting.
#Example
```
* import {httpInjectables, HttpFactory, IHttp} from 'angular2/http';
@Component({
appInjector: [httpInjectables]
})
@View({
templateUrl: 'people.html'
})
class MyComponent {
constructor(@Inject(HttpFactory) http:IHttp) {
http('people.json').subscribe(res => this.people = res.json());
}
}
```