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

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: Update after owners' review. 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 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
16 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
17 <link rel="stylesheet" href="set_as_default_browser.css">
18 </head>
19 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
20 <div id="metro-setup-outer-container">
21 <div id="metro-setup-overlay" class="page">
22 <div>
23 <div class="content-area">
24 <h1 i18n-content="flowTitle"></h1>
25 <h2 i18n-content="flowDescription"></h2>
26 </div>
27 <div id="metro-action-box" class="content-area">
28 <div class="button-strip">
29 <button id="launch-button" class="custom-appearance"
30 i18n-content="flowNext"></button>
31 <button id="return-button" i18n-content="flowCancel"></button>
32 </div>
33 </div>
34 </div>
35 </div>
36 </div>
37 </body>
38 <script src="chrome://resources/js/i18n_template.js"></script>
39 <script src="chrome://resources/js/i18n_process.js"></script>
40 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/set_as_default_browser.css ('k') | chrome/browser/resources/set_as_default_browser.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698