| Index: chrome/browser/resources/print_preview/print_header.js
|
| diff --git a/chrome/browser/resources/print_preview/print_header.js b/chrome/browser/resources/print_preview/print_header.js
|
| index 2d9342975da554b7ba2e8e45562eb375757ac94a..059fb05d26fdd43e1c2a9c7def9317a5cca8f386 100644
|
| --- a/chrome/browser/resources/print_preview/print_header.js
|
| +++ b/chrome/browser/resources/print_preview/print_header.js
|
| @@ -213,7 +213,9 @@ cr.define('print_preview', function() {
|
| */
|
| onDestinationSelect_: function() {
|
| if (this.destinationStore_.selectedDestination.id ==
|
| - print_preview.Destination.GooglePromotedId.SAVE_AS_PDF) {
|
| + print_preview.Destination.GooglePromotedId.SAVE_AS_PDF ||
|
| + this.destinationStore_.selectedDestination.id ==
|
| + print_preview.Destination.GooglePromotedId.DOCS) {
|
| this.printButton_.textContent = localStrings.getString('saveButton');
|
| } else {
|
| this.printButton_.textContent = localStrings.getString('printButton');
|
|
|