| Index: chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.html
|
| diff --git a/chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.html b/chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.html
|
| index dfe225d2c53c4f4ad5e108e767995aa08a83e5f6..63024e07bb98b26dbd59d8cf601d3cd29c2b5190 100644
|
| --- a/chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.html
|
| +++ b/chrome/browser/resources/pdf/elements/viewer-pdf-toolbar/viewer-pdf-toolbar.html
|
| @@ -1,13 +1,13 @@
|
| <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-flex-layout.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/slide-up-animation.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/transform-animation.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animation-runner-behavior.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-progress.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-toolbar.html">
|
| +<link rel="import" href="chrome://resources/cr_elements/icons.html">
|
| +<link rel="import" href="../icons.html">
|
| <link rel="import" href="../viewer-bookmarks-content/viewer-bookmarks-content.html">
|
| <link rel="import" href="../viewer-page-selector/viewer-page-selector.html">
|
| <link rel="import" href="../viewer-toolbar-dropdown/viewer-toolbar-dropdown.html">
|
| @@ -30,25 +30,25 @@
|
| </div>
|
|
|
| <div id="buttons" class="invisible">
|
| - <paper-icon-button id="rotate-right" icon="image:rotate-right"
|
| + <paper-icon-button id="rotate-right" icon="pdf:rotate-right"
|
| on-click="rotateRight"
|
| i18n-values="aria-label:tooltipRotateCW;title:tooltipRotateCW">
|
| </paper-icon-button>
|
|
|
| - <paper-icon-button id="download" icon="file-download"
|
| + <paper-icon-button id="download" icon="cr:file-download"
|
| on-click="download"
|
| i18n-values="aria-label:tooltipDownload;title:tooltipDownload">
|
| </paper-icon-button>
|
|
|
| - <paper-icon-button id="print" icon="print"
|
| + <paper-icon-button id="print" icon="cr:print"
|
| on-click="print"
|
| i18n-values="aria-label:tooltipPrint;title:tooltipPrint">
|
| </paper-icon-button>
|
|
|
| <viewer-toolbar-dropdown id="bookmarks"
|
| hidden$="[[!bookmarks.length]]"
|
| - open-icon="bookmark"
|
| - closed-icon="bookmark-border"
|
| + open-icon="pdf:bookmark"
|
| + closed-icon="pdf:bookmark-border"
|
| i18n-values="header:bookmarks">
|
| <viewer-bookmarks-content bookmarks="{{bookmarks}}">
|
| </viewer-bookmarks-content>
|
|
|