summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/routes.html
blob: 5d5328e110ac5652dfddba4795e215c69bcba064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<link rel="import" href="chrome://resources/polymer/v1_0/more-routing/more-routing.html">

<!-- Drivers manage how the URL is read, and how to navigate to URLs. "hash"
     based driver means URLs like /#!/a11y are generated. This is preferred to
     ensure that navigating between pages via links does not trigger a page
     reload. For more details, see http://goo.gl/maQU6V. -->
<more-routing-config driver="hash"></more-routing-config>

<more-route name="a11y" path="/a11y"></more-route>
<more-route name="appearance" path="/appearance"></more-route>
<more-route name="dateTime" path="/dateTime"></more-route>
<more-route name="downloads" path="/downloads"></more-route>
<more-route name="internet" path="/internet">
  <more-route name="internet-detail" path="/detail/:guid"></more-route>
</more-route>
<more-route name="privacy" path="/privacy"></more-route>
<more-route name="search" path="/search">
  <more-route name="search-engines" path="/engines"></more-route>
</more-route>
<more-route name="sync" path="/sync"></more-route>
<more-route name="users" path="/users"></more-route>