angular-cn/modules/angular2/test/platform/browser
Nathan Walker b602bd8c83 refactor(Location): out of router and into platform/common
closes https://github.com/angular/angular/issues/4943

BREAKING CHANGE:

`Location` and other related providers have been moved out of `router` and into `platform/common`. `BrowserPlatformLocation` is not meant to be used directly however advanced configurations may use it via the following import change.

Before:

```
import {
  PlatformLocation,
  Location,
  LocationStrategy,
  HashLocationStrategy,
  PathLocationStrategy,
  APP_BASE_HREF}
from 'angular2/router';

import {BrowserPlatformLocation} from 'angular2/src/router/location/browser_platform_location';
```

After:

```
import {
  PlatformLocation,
  Location,
  LocationStrategy,
  HashLocationStrategy,
  PathLocationStrategy,
  APP_BASE_HREF}
from 'angular2/platform/common';

import {BrowserPlatformLocation} from 'angular2/src/platform/browser/location/browser_platform_location';
```

Closes #7962
2016-04-20 04:28:47 +00:00
..
static_assets refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
tools revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
bootstrap_spec.ts refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00
rectangle_mock.dart refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
rectangle_mock.ts refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
ruler_spec.ts revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
title_spec.ts cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00
xhr_cache_setter.dart feat(compiler): Add an implementation for XHR that uses a template cache to load template files. 2016-04-08 19:05:05 +00:00
xhr_cache_setter.ts feat(compiler): Add an implementation for XHR that uses a template cache to load template files. 2016-04-08 19:05:05 +00:00
xhr_cache_spec.ts revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00
xhr_impl_spec.ts revert(format): Revert "chore(format): update to latest formatter" 2016-04-12 09:41:01 -07:00