summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/settings.html
blob: c3cdadf97049e8919618febe5b741730dda93404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Settings</title>
  <base href="chrome://md-settings">
  <link rel="import" href="chrome://resources/html/polymer_config.html">
  <link rel="import" href="chrome://md-settings/i18n_setup.html">
  <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
  <link rel="import" href="chrome://md-settings/settings_ui/settings_ui.html">
  <link rel="import" href="chrome://md-settings/prefs/prefs.html">
</head>
<body>

  <dom-module id="cr-settings">
    <template>
      <settings-prefs id="prefs" prefs="{{prefs_}}"></settings-prefs>
      <settings-ui prefs="{{prefs_}}"></settings-ui>
    </template>
    <script src="settings.js"></script>
  </dom-module>

  <cr-settings></cr-settings>
  <script src="chrome://resources/js/i18n_template.js"></script>
</body>
</html>