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

Unified Diff: chrome/browser/resources/settings/users_page/users_page.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/users_page/users_page.html
diff --git a/chrome/browser/resources/settings/users_page/users_page.html b/chrome/browser/resources/settings/users_page/users_page.html
index 2bd2cf75ee4396e2234a47e5d78e4ce09d910065..0ecd7d64ef30fae1980f33c28d55bcf7cc5ebd9a 100644
--- a/chrome/browser/resources/settings/users_page/users_page.html
+++ b/chrome/browser/resources/settings/users_page/users_page.html
@@ -2,17 +2,16 @@
<link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-material.html">
<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button.html">
<link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.html">
<link rel="import" href="chrome://md-settings/checkbox/checkbox.html">
+<link rel="import" href="chrome://md-settings/settings_page/settings_section.html">
<link rel="import" href="user_list.html">
<dom-module id="cr-settings-users-page">
- <link rel="import" type="css" href="chrome://md-settings/settings_page/settings_page.css">
<link rel="import" type="css" href="users_page.css">
<template>
- <paper-material>
+ <cr-settings-section page-title="[[pageTitle]]" icon="[[icon]]">
michaelpg 2015/07/22 21:01:33 this is from the initial patch
tommycli 2015/07/22 23:54:38 Done.
<div class="page-content">
<div i18n-content="usersModifiedByOwnerLabel"
hidden$="{{computeHideOwnerLabel_(isOwner, isWhitelistManaged)}}">
@@ -60,7 +59,7 @@
</div>
</div>
</div>
- </paper-material>
+ </cr-settings-section>
</template>
<script src="users_page.js"></script>
</dom-module>

Powered by Google App Engine
This is Rietveld 408576698