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

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

Issue 10539169: Prototype version of the first-run dialog for Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed classes and files. Addressed other remarks. Created 8 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
(Empty)
1 <!DOCTYPE HTML>
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
4 found in the LICENSE file. -->
5 <html i18n-values="dir:textdirection">
6 <head>
7 <meta charset="utf-8">
8 <title i18n-content="page-title"></title>
9 <script src="chrome://resources/js/local_strings.js"></script>
10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://resources/js/cr/event_target.js"></script>
13 <script src="strings.js"></script>
14 <script src="set_as_default_browser.js"></script>
15
James Hawkins 2012/06/22 20:04:52 nit: Remove all blank lines.
motek. 2012/06/22 20:40:18 Done.
16 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
17 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
18 <link rel="stylesheet" href="set_as_default_browser.css">
19
20 </head>
21
22 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
23
24 <div id="metro-setup-outer-container">
25 <div id="metro-setup-overlay" class="page">
26 <div>
27 <div>
James Hawkins 2012/06/22 20:04:52 nit: Remove extra div.
motek. 2012/06/22 20:40:18 Done.
28 <div class="content-area">
29 <h1 i18n-content="flowTitle"></h1>
30 <h2 i18n-content="flowDescription"></h2>
31 </div>
32 <div id="metro-action-box" class="content-area">
33 <div class="button-strip">
34 <button id="launch-button" class="custom-appearance"
35 i18n-content="flowNext"></button>
36 <button id="return-button" i18n-content="flowCancel"></button>
37 </div>
38 </div>
39 </div>
40 </div>
41 </div>
42 </div>
43
44 </body>
45 <script src="chrome://resources/js/i18n_template.js"></script>
46 <script src="chrome://resources/js/i18n_process.js"></script>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698