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

Unified Diff: chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html

Issue 1960323002: MD Settings: Use shared cr_elements iconset when possible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CrIconsCrOS
Patch Set: rebase Created 4 years, 7 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/internet_page/network_proxy_exclusions.html
diff --git a/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html b/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
index 241e3f1edd02c60e65bd5b3ea82eb489c933e698..da9d66a26b613be0813730154ea4d8cbd7a04e00 100644
--- a/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
+++ b/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
@@ -1,5 +1,5 @@
+<link rel="import" href="chrome://resources/cr_elements/icons.html">
<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
<dom-module id="network-proxy-exclusions">
<link rel="import" type="css" href="network_proxy_exclusions.css">
@@ -8,7 +8,8 @@
<template is="dom-repeat" items="[[exclusions]]">
<div class="layout horizontal">
<span class="flex">[[item]]</span>
- <iron-icon icon="clear" on-tap="onRemoveTap_"></iron-icon>
+ <iron-icon icon="cr:clear" on-tap="onRemoveTap_">
+ </iron-icon>
</div>
</template>
</div>

Powered by Google App Engine
This is Rietveld 408576698