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

Unified Diff: chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html

Issue 1162563004: Upgrade to 1.0 and switch clients to dom-repeat where needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a layout import and remove the gzipped webanimation in reproduce.sh Created 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/pdf/elements/viewer-bookmark/viewer-bookmark.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
diff --git a/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html b/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
index 9a4854480a9b8f8a2e3d585f886c3cacd7008c59..1d4d6351ec9252d266aad609d2c78aadf54fa1c8 100644
--- a/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
+++ b/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.html
@@ -35,7 +35,7 @@
</issue-banner>
<paper-menu id="cast-mode-list"
hidden$="[[computeCastModeHidden_(currentView_)]]">
- <template is="x-repeat" id="castModeList" items="[[castModeList]]">
+ <template is="dom-repeat" id="castModeList" items="[[castModeList]]">
<paper-item class="cast-mode" on-click="onCastModeClick_">
<span>[[item.description]]</span>
</paper-item>
@@ -52,7 +52,7 @@
https://github.com/PolymerElements/paper-menu/issues/17 -->
<paper-menu id="sink-list"
hidden$="[[computeSinkListHidden_(currentView_, issue)]]">
- <template is="x-repeat" id="sinkList" items="[[sinkList]]">
+ <template is="dom-repeat" id="sinkList" items="[[sinkList]]">
<paper-item class="sink" on-click="onSinkClick_">
<!-- TODO(apacible): Show device icon based on device type. -->
<iron-icon class="sink-icon" icon="hardware:tv"></iron-icon>
« no previous file with comments | « no previous file | chrome/browser/resources/pdf/elements/viewer-bookmark/viewer-bookmark.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698