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

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

Issue 7976017: Simplified print preview printer selection to be more consistent with Chrome (Closed)
Patch Set: Fix whitespace Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/print_preview/print_preview.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ed69dba6e1f471da8ecda16027d026dfd0c8be0e..ea168fc4470c1e91e3a0a315c4756205052614e8 100644
--- a/chrome/browser/resources/print_preview/print_preview.html
+++ b/chrome/browser/resources/print_preview/print_preview.html
@@ -46,8 +46,14 @@
<include src="header_footer_settings.html"></include>
<hr>
<div id="system-dialog-div">
- <button id="system-dialog-link" class="link-button"
- i18n-content="systemDialogOption"></button>
+ <if expr="pp_ifdef('chromeos')">
+ <button id="system-dialog-link" class="link-button"
+ i18n-content="cloudPrintDialogOption"></button>
+ </if>
+ <if expr="not pp_ifdef('chromeos')">
+ <button id="system-dialog-link" class="link-button"
+ i18n-content="systemDialogOption"></button>
+ </if>
<!-- TODO(dpapad): Investigate whey hidden attribute does not work. -->
<div id="system-dialog-throbber" class="throbber hidden"></div>
</div>
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/print_preview/print_preview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698