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

Unified Diff: third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js

Issue 1215543002: Remove Polymer 0.5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test Created 5 years, 6 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: third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js
diff --git a/third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js b/third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js
deleted file mode 100644
index f6e087af45421667421a59a142f53209a82b38b9..0000000000000000000000000000000000000000
--- a/third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js
+++ /dev/null
@@ -1,41 +0,0 @@
-
- Polymer('paper-icon-button',{
-
- publish: {
-
- /**
- * The URL of an image for the icon. If the src property is specified,
- * the icon property should not be.
- *
- * @attribute src
- * @type string
- * @default ''
- */
- src: '',
-
- /**
- * Specifies the icon name or index in the set of icons available in
- * the icon's icon set. If the icon property is specified,
- * the src property should not be.
- *
- * @attribute icon
- * @type string
- * @default ''
- */
- icon: '',
-
- recenteringTouch: true,
- fill: false
-
- },
-
- iconChanged: function(oldIcon) {
- var label = this.getAttribute('aria-label');
- if (!label || label === oldIcon) {
- this.setAttribute('aria-label', this.icon);
- }
- }
-
- });
-
-

Powered by Google App Engine
This is Rietveld 408576698