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

Side by Side Diff: chrome/browser/resources/pdf/elements/viewer-zoom-toolbar/viewer-zoom-button.html

Issue 2084813002: PDF: Small cleanup of Polymer usage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reorder imports Created 4 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/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-fab/paper-fab.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-fab/paper-fab.htm l">
3 3
4 <dom-module id="viewer-zoom-button"> 4 <dom-module id="viewer-zoom-button">
5 <link rel="import" type="css" href="../shared-icon-style.css"> 5 <link rel="import" type="css" href="../shared-icon-style.css">
6 <link rel="import" type="css" href="viewer-zoom-button.css"> 6 <link rel="import" type="css" href="viewer-zoom-button.css">
7 <template> 7 <template>
8 <div id="wrapper"> 8 <div id="wrapper">
9 <paper-fab id="button" mini icon="[[visibleIcon_]]" on-click="fireClick" 9 <paper-fab id="button" mini icon="[[visibleIcon_]]" on-click="fireClick"
10 aria-label$="[[visibleTooltip_]]" title="[[visibleTooltip_]]"> 10 aria-label$="[[visibleTooltip_]]" title="[[visibleTooltip_]]">
11 </paper-fab> 11 </paper-fab>
12 </div> 12 </div>
13 </template> 13 </template>
14 </dom-module> 14 </dom-module>
15 <script src="viewer-zoom-button.js"></script> 15 <script src="viewer-zoom-button.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698