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

Unified Diff: chrome/browser/resources/settings/device_page/device_page.html

Issue 2675383003: MD Settings: CrOS: Elim device page icons (Closed)
Patch Set: Rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/device_page/device_page.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/device_page/device_page.html
diff --git a/chrome/browser/resources/settings/device_page/device_page.html b/chrome/browser/resources/settings/device_page/device_page.html
index c0a6aa54ec89d6711f104fe2fbf07fddccd0b539..1665552a5c9213cb9f69f278d8234dfc6d653b63 100644
--- a/chrome/browser/resources/settings/device_page/device_page.html
+++ b/chrome/browser/resources/settings/device_page/device_page.html
@@ -2,7 +2,6 @@
<link rel="import" href="chrome://resources/html/md_select_css.html">
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html">
<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animatable.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html">
<link rel="import" href="device_page_browser_proxy.html">
@@ -11,7 +10,6 @@
<link rel="import" href="pointers.html">
<link rel="import" href="storage.html">
<link rel="import" href="stylus.html">
-<link rel="import" href="../icons.html">
<link rel="import" href="../prefs/prefs.html">
<link rel="import" href="../route.html">
<link rel="import" href="../settings_page/settings_animated_pages.html">
@@ -25,8 +23,6 @@
<neon-animatable id="main" route-path="default">
<div id="pointersRow" class="settings-box first"
on-tap="onPointersTap_" actionable>
- <iron-icon icon="[[getPointersIcon_(hasMouse_, hasTouchpad_)]]">
- </iron-icon>
<div class="middle">
[[getPointersTitle_(hasMouse_, hasTouchpad_)]]
</div>
@@ -34,33 +30,28 @@
</div>
<div id="keyboardRow" class="settings-box" on-tap="onKeyboardTap_"
actionable>
- <iron-icon icon="settings:keyboard"></iron-icon>
<div class="middle">$i18n{keyboardTitle}</div>
<button class="subpage-arrow" is="paper-icon-button-light"></button>
</div>
<template is="dom-if" if="[[hasStylus_]]">
<div id="stylusRow" class="settings-box" on-tap="onStylusTap_"
actionable>
- <iron-icon icon="settings:note"></iron-icon>
<div class="middle">$i18n{stylusTitle}</div>
<button class="subpage-arrow" is="paper-icon-button-light"></button>
</div>
</template>
<div id="displayRow" class="settings-box" on-tap="onDisplayTap_"
actionable>
- <iron-icon icon="settings:desktop-windows"></iron-icon>
<div class="middle">$i18n{displayTitle}</div>
<button class="subpage-arrow" is="paper-icon-button-light"></button>
</div>
<div id="storageRow" class="settings-box" on-tap="onStorageTap_"
actionable>
- <iron-icon icon="settings:storage"></iron-icon>
<div class="middle">$i18n{storageTitle}</div>
<button class="subpage-arrow" is="paper-icon-button-light"></button>
</div>
<template is="dom-if" if="[[enablePowerSettings_]]">
<div id="powerRow" class="settings-box two-line">
- <iron-icon icon="[[batteryIcon_]]"></iron-icon>
<div class="middle">
<div>[[powerLabel_]]</div>
<div class="secondary">[[batteryStatus_.statusText]]</div>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/device_page/device_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698