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

Unified Diff: chrome/browser/resources/md_policy/policy_ui.html

Issue 1371073003: Display material design policies grouped by tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Extracting PolicyUi + Renaming. Created 5 years, 2 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/md_policy/policy_ui.html
diff --git a/chrome/browser/resources/md_policy/policy_ui.html b/chrome/browser/resources/md_policy/policy_ui.html
new file mode 100644
index 0000000000000000000000000000000000000000..eaf304beb1427a85cd5c64052aa279ad85629600
--- /dev/null
+++ b/chrome/browser/resources/md_policy/policy_ui.html
@@ -0,0 +1,21 @@
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
+
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-card.html">
+
+<link rel="import" href="chrome://md-policy/policy_group.html">
+
+<dom-module id="policy-ui">
+ <link rel="import" type="css" href="chrome://md-policy/policy_ui.css">
+ <template>
+ <!--TODO(fhorschig): Remove mock and use reviewed i18n strings! -->
+ <paper-card id="introduction"
+ heading="[[introduction.title]]"
+ aria-label="[[introduction.title]]">
stevenjb 2015/10/07 17:09:32 Fix indent. (4 spaces from tag)
fhorschig 2015/10/08 09:35:45 Done.
+ <div class="card-content">[[introduction.text]]</div>
+ </paper-card>
+ <!-- end of ToDo -->
+ <div id="groups">
+ </div>
+ </template>
+ <script src="policy_ui.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698