chromium/third_party/blink/perf_tests/speedometer21/resources/todomvc/architecture-examples/emberjs/app/router.js

import Ember from 'ember';
import config from './config/environment';

const Router = Ember.Router.extend({
    location: config.locationType,
    rootURL: config.rootURL
});

Router.map(function () {
    this.route('active');
    this.route('completed');
});

export default Router;