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

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

Issue 10837084: The updated (simplified) look of set-as-default dialog on Windows8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed up css/html to meet the new design. Created 8 years, 4 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 <html i18n-values="dir:textdirection"> 5 <html i18n-values="dir:textdirection">
6 <head> 6 <head>
7 <meta charset="utf-8"> 7 <meta charset="utf-8">
8 <title i18n-content="page-title"></title> 8 <title i18n-content="page-title"></title>
9 <script src="chrome://resources/js/local_strings.js"></script> 9 <script src="chrome://resources/js/local_strings.js"></script>
10 <script src="chrome://resources/js/cr.js"></script> 10 <script src="chrome://resources/js/cr.js"></script>
(...skipping 10 matching lines...) Expand all
21 <div id="metro-setup-overlay" class="page"> 21 <div id="metro-setup-overlay" class="page">
22 <div> 22 <div>
23 <div class="content-area"> 23 <div class="content-area">
24 <h1 i18n-content="flowTitle"></h1> 24 <h1 i18n-content="flowTitle"></h1>
25 <h2 i18n-content="flowDescription"></h2> 25 <h2 i18n-content="flowDescription"></h2>
26 </div> 26 </div>
27 <div id="metro-action-box" class="content-area"> 27 <div id="metro-action-box" class="content-area">
28 <div class="button-strip"> 28 <div class="button-strip">
29 <button id="launch-button" class="custom-appearance" 29 <button id="launch-button" class="custom-appearance"
30 i18n-content="flowNext"></button> 30 i18n-content="flowNext"></button>
31 <button id="return-button" i18n-content="flowCancel"></button>
32 </div> 31 </div>
33 </div> 32 </div>
34 </div> 33 </div>
35 </div> 34 </div>
35 <div id="chrome-logo-box">
36 <img src="chrome-logo-faded.png" alt="chrome logo"></img>
James Hawkins 2012/08/03 22:51:44 i18n
motek. 2012/08/06 18:38:30 I don't understand. Could you please point me to a
James Hawkins 2012/08/06 21:21:13 <img src="chrome-logo-faded.png" i18n-values="alt:
37 </div>
36 </div> 38 </div>
37 </body> 39 </body>
38 <script src="chrome://resources/js/i18n_template.js"></script> 40 <script src="chrome://resources/js/i18n_template.js"></script>
39 <script src="chrome://resources/js/i18n_process.js"></script> 41 <script src="chrome://resources/js/i18n_process.js"></script>
40 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698