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

Unified Diff: chrome/browser/resources/settings/settings_page/settings_subpage.html

Issue 1826683002: MD Settings: Lazy-load sub-pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@WebAnimationsExterns
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/settings_page/settings_subpage.html
diff --git a/chrome/browser/resources/settings/settings_page/settings_subpage.html b/chrome/browser/resources/settings/settings_page/settings_subpage.html
new file mode 100644
index 0000000000000000000000000000000000000000..4d3c27bb9abc145d1abb9342123b4e4ad001ef1e
--- /dev/null
+++ b/chrome/browser/resources/settings/settings_page/settings_subpage.html
@@ -0,0 +1,18 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-resizable-behavior/iron-resizable-behavior.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animatable-behavior.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
+
+<dom-module id="settings-subpage">
+ <link rel="import" type="css" href="settings_subpage.css">
+ <template>
+ <div id="subheader">
+ <paper-icon-button icon="arrow-back" on-tap="onTapBack_">
+ </paper-icon-button>
+ <h2>[[pageTitle]]</h2>
+ </div>
+ <content></content>
+ </template>
+ <script src="settings_subpage.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698