Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(635)

Side by Side Diff: chrome/browser/resources/settings/settings.html

Issue 1470263003: Remove <cr-settings> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@PerformanceExploration
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Settings</title> 5 <title>Settings</title>
6 <base href="chrome://md-settings"> 6 <base href="chrome://md-settings">
7 <script src="chrome://resources/js/polymer_config.js"></script> 7 <script src="chrome://resources/js/polymer_config.js"></script>
8 <link rel="import" href="chrome://md-settings/i18n_setup.html"> 8 <link rel="import" href="chrome://md-settings/i18n_setup.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" > 9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" >
10 <link rel="import" href="chrome://md-settings/settings_ui/settings_ui.html"> 10 <link rel="import" href="chrome://md-settings/settings_ui/settings_ui.html">
11 <link rel="import" href="chrome://md-settings/prefs/prefs.html"> 11 <link rel="import" href="chrome://md-settings/prefs/prefs.html">
12 </head> 12 </head>
13 <body> 13 <body>
14 14
15 <dom-module id="cr-settings"> 15 <template is="dom-bind">
16 <template> 16 <settings-prefs id="prefs" prefs="{{prefs}}"></settings-prefs>
17 <settings-prefs id="prefs" prefs="{{prefs_}}"></settings-prefs> 17 <settings-ui prefs="{{prefs}}"></settings-ui>
18 <settings-ui prefs="{{prefs_}}"></settings-ui> 18 </template>
19 </template>
20 <script src="settings.js"></script>
21 </dom-module>
22 19
23 <cr-settings></cr-settings>
24 <script src="chrome://resources/js/i18n_template.js"></script> 20 <script src="chrome://resources/js/i18n_template.js"></script>
25 </body> 21 </body>
26 </html> 22 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698