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

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

Issue 1241363002: Settings Rewrite: Make a common settings-section component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0300-webui-settings-structure
Patch Set: Created 5 years, 5 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 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/notification -icons.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html">
5
6 <dom-module id="cr-settings-section">
7 <link rel="import" type="css" href="settings_section.css">
8 <template>
9 <paper-material>
10 <div class="header">
11 <iron-icon icon="{{icon}}"></iron-icon>
12 <div class="title">{{pageTitle}}</div>
13 </div>
14 <div class="content-container">
15 <content id="content"></content>
16 </div>
17 </paper-material>
18 </template>
19 <script src="settings_section.js"></script>
20 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698