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

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

Issue 893323002: Add a basic stub Polymer settings page at chrome://md-settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Setting the upstream. Created 5 years, 10 months 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="settings_title"></title>
michaelpg 2015/02/04 02:35:29 settingsTitle: useCamelCase (what we use for JS va
Oren Blasberg 2015/02/04 18:31:50 Done.
6
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="import" href="chrome://resources/polymer/paper-button/paper-button. html">
9
10 <script src="chrome://resources/js/action_link.js"></script>
11 <script src="chrome://resources/js/cr.js"></script>
12 <script src="chrome://resources/js/cr/ui.js"></script>
13 <script src="chrome://resources/js/cr/ui/command.js"></script>
14 <script src="chrome://resources/js/load_time_data.js"></script>
15 <script src="chrome://resources/js/util.js"></script>
16 <script src="strings.js"></script>
stevenjb 2015/02/04 02:19:15 I think we should consider starting with as blank
Jeremy Klein 2015/02/04 02:24:26 +1 to clearing this out for now. Are any of the ab
Oren Blasberg 2015/02/04 18:31:50 Done.
17
18 <style type="text/css">
19 #manage-button {
20 background: #4182fa;
21 color: white;
22 }
23 </style>
stevenjb 2015/02/04 02:19:15 Iirc, we decided to separate .css from .html?
Oren Blasberg 2015/02/04 18:31:50 Done.
24 </head>
25 <body>
26 <header>
27 <h1 i18n-content="settings_title"></h1>
28 </header>
29 <div class="main">
30 <paper-button id="manage-button" raised>Manage</paper>
31 </div>
32 <script src="chrome://resources/js/i18n_template2.js"></script>
stevenjb 2015/02/04 02:19:15 Do we want to start out with the existing chrome i
Jeremy Klein 2015/02/04 02:24:26 I thought we were planning on using the chrome i18
michaelpg 2015/02/04 02:35:29 I'd say skip it. We'll probably use chrome.i18n fo
Oren Blasberg 2015/02/04 18:31:50 Done.
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698