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

Unified Diff: chrome/browser/resources/print_preview/print_preview.html

Issue 8425008: PrintPreview:[MAC] Added "Open PDF In Preview" option to open the pdf in native preview app. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Added a check to fix the TestErrorMessage unit test Created 9 years, 1 month 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
Index: chrome/browser/resources/print_preview/print_preview.html
diff --git a/chrome/browser/resources/print_preview/print_preview.html b/chrome/browser/resources/print_preview/print_preview.html
index b7bea96181f54f444012bbd19e105b4c4abbdc45..3416cec6212e803955d3a6b15df75a0694558dd7 100644
--- a/chrome/browser/resources/print_preview/print_preview.html
+++ b/chrome/browser/resources/print_preview/print_preview.html
@@ -49,15 +49,25 @@
<include src="header_footer_settings.html"></include>
<div>
<if expr="pp_ifdef('chromeos')">
- <button id="system-dialog-link" class="link-button"
+ <button id="system-dialog-link"
+ class="link-button preview-link-button"
i18n-content="cloudPrintDialogOption"></button>
</if>
<if expr="not pp_ifdef('chromeos')">
- <button id="system-dialog-link" class="link-button"
+ <button id="system-dialog-link"
+ class="link-button preview-link-button"
i18n-content="systemDialogOption"></button>
</if>
<div id="system-dialog-throbber" class="throbber" hidden></div>
</div>
+ <if expr="os == 'darwin'">
+ <div>
+ <button id="open-pdf-in-preview-link"
+ class="link-button preview-link-button"
+ i18n-content="openPdfInPreviewOption"></button>
+ <div id="open-preview-app-throbber" class="throbber" hidden></div>
+ </div>
+ </if>
</div>
</div>
<div id="mainview">
« no previous file with comments | « chrome/browser/resources/print_preview/print_preview.css ('k') | chrome/browser/resources/print_preview/print_preview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698