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

Side by Side 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, 2 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <include src="../content_security_policy.html"/> 5 <include src="../content_security_policy.html"/>
6 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
7 <link rel="icon" href="../../../app/theme/print_preview_favicon.png"> 7 <link rel="icon" href="../../../app/theme/print_preview_favicon.png">
8 <link rel="stylesheet" href="../webui.css"> 8 <link rel="stylesheet" href="../webui.css">
9 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> 9 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
10 <link rel="stylesheet" href="print_preview.css"> 10 <link rel="stylesheet" href="print_preview.css">
(...skipping 28 matching lines...) Expand all
39 <hr> 39 <hr>
40 <include src="color_settings.html"></include> 40 <include src="color_settings.html"></include>
41 <hr> 41 <hr>
42 <div id="display-margin-options" hidden> 42 <div id="display-margin-options" hidden>
43 <include src="margin_settings.html"></include> 43 <include src="margin_settings.html"></include>
44 <hr> 44 <hr>
45 </div> 45 </div>
46 <include src="header_footer_settings.html"></include> 46 <include src="header_footer_settings.html"></include>
47 <hr> 47 <hr>
48 <div id="system-dialog-div"> 48 <div id="system-dialog-div">
49 <button id="system-dialog-link" class="link-button" 49 <if expr="pp_ifdef('chromeos')">
50 i18n-content="systemDialogOption"></button> 50 <button id="system-dialog-link" class="link-button"
51 i18n-content="cloudPrintDialogOption"></button>
52 </if>
53 <if expr="not pp_ifdef('chromeos')">
54 <button id="system-dialog-link" class="link-button"
55 i18n-content="systemDialogOption"></button>
56 </if>
51 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. --> 57 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. -->
52 <div id="system-dialog-throbber" class="throbber hidden"></div> 58 <div id="system-dialog-throbber" class="throbber hidden"></div>
53 </div> 59 </div>
54 </div> 60 </div>
55 </div> 61 </div>
56 <div id="mainview"> 62 <div id="mainview">
57 <div id="overlay-layer" class="invisible"> 63 <div id="overlay-layer" class="invisible">
58 <div id="messages"> 64 <div id="messages">
59 <div id="dancing-dots-text" hidden> 65 <div id="dancing-dots-text" hidden>
60 <span id="loading"></span> 66 <span id="loading"></span>
61 <span><span>.</span><span>.</span><span>.</span></span> 67 <span><span>.</span><span>.</span><span>.</span></span>
62 </div> 68 </div>
63 <div id="custom-message" hidden></div> 69 <div id="custom-message" hidden></div>
64 <div id="custom-message-with-dots" 70 <div id="custom-message-with-dots"
65 class="message-with-dots" hidden></div> 71 class="message-with-dots" hidden></div>
66 <div id="error-action-area"> 72 <div id="error-action-area">
67 <button id="error-button" class="hidden"></button> 73 <button id="error-button" class="hidden"></button>
68 <div id="native-print-dialog-throbber" class="throbber hidden"></div> 74 <div id="native-print-dialog-throbber" class="throbber hidden"></div>
69 </div> 75 </div>
70 </div> 76 </div>
71 </div> 77 </div>
72 </div> 78 </div>
73 <object id="dummy-viewer" 79 <object id="dummy-viewer"
74 type="application/x-google-chrome-print-preview-pdf" 80 type="application/x-google-chrome-print-preview-pdf"
75 data="chrome://print/dummy.pdf"></object> 81 data="chrome://print/dummy.pdf"></object>
76 <script src="chrome://resources/js/i18n_template.js"></script> 82 <script src="chrome://resources/js/i18n_template.js"></script>
77 <script src="chrome://resources/js/i18n_process.js"></script> 83 <script src="chrome://resources/js/i18n_process.js"></script>
78 </body> 84 </body>
79 </html> 85 </html>
OLDNEW
« 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