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

Side by Side Diff: chrome/browser/resources/pdf/elements/viewer-bookmarks-content/viewer-bookmarks-content.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, 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v0_8/polymer/polymer.html">
2 <link rel="import" href="../viewer-bookmark/viewer-bookmark.html"> 2 <link rel="import" href="../viewer-bookmark/viewer-bookmark.html">
3 3
4 <dom-module id="viewer-bookmarks-content"> 4 <dom-module id="viewer-bookmarks-content">
5 <template> 5 <template>
6 <template is="x-repeat" items="{{bookmarks}}"> 6 <template is="dom-repeat" items="{{bookmarks}}">
7 <viewer-bookmark bookmark="{{item}}"></viewer-bookmark> 7 <viewer-bookmark bookmark="{{item}}"></viewer-bookmark>
8 </template> 8 </template>
9 </template> 9 </template>
10 </dom-module> 10 </dom-module>
11 <script src="viewer-bookmarks-content.js"></script> 11 <script src="viewer-bookmarks-content.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698