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

Side by Side Diff: chrome/browser/resources/local_discovery/local_discovery.html

Issue 338423005: Add back button to chrome://devices (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 <!-- TODO(noamsml): i18n before submitting --> 1 <!-- TODO(noamsml): i18n before submitting -->
2 <!DOCTYPE HTML> 2 <!DOCTYPE HTML>
3 <html> 3 <html>
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title i18n-content="devicesTitle"></title> 6 <title i18n-content="devicesTitle"></title>
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> 8 <link rel="stylesheet" href="chrome://resources/css/overlay.css">
9 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 9 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
10 <link rel="stylesheet" href="local_discovery.css"> 10 <link rel="stylesheet" href="local_discovery.css">
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 <div i18n-content="addingErrorMessage" id="error-message"></div> 72 <div i18n-content="addingErrorMessage" id="error-message"></div>
73 <div class="button-list"> 73 <div class="button-list">
74 <button id="register-error-exit" i18n-content="ok"></button> 74 <button id="register-error-exit" i18n-content="ok"></button>
75 </div> 75 </div>
76 </div> 76 </div>
77 </div> 77 </div>
78 </div> 78 </div>
79 </div> 79 </div>
80 80
81 <header> 81 <header>
82 <button id="back-button" class="link-button" hidden>
83 <span i18n-content="backButton"></span>
84 </button>
82 <h1 i18n-content="devicesTitle"></h1> 85 <h1 i18n-content="devicesTitle"></h1>
83 </header> 86 </header>
84 87
85 <div class="controls" id="printers"> 88 <div class="controls" id="printers">
86 <h2 i18n-content="availableDevicesTitle"></h2> 89 <h2 i18n-content="availableDevicesTitle"></h2>
87 90
88 <div id="register-login-promo" class="login-promo cloud-print-message" 91 <div id="register-login-promo" class="login-promo cloud-print-message"
89 hidden> 92 hidden>
90 <span i18n-content="registerNeedLogin"></span> 93 <span i18n-content="registerNeedLogin"></span>
91 <button class="link-button" id="register-login-button" 94 <button class="link-button" id="register-login-button"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 </div> 133 </div>
131 <div id="cloud-devices"> 134 <div id="cloud-devices">
132 135
133 </div> 136 </div>
134 </div> 137 </div>
135 138
136 <script src="chrome://resources/js/i18n_template2.js"></script> 139 <script src="chrome://resources/js/i18n_template2.js"></script>
137 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 140 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
138 </body> 141 </body>
139 </html> 142 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698