Chromium Code Reviews| Index: chrome/browser/resources/set_as_default_browser.html |
| diff --git a/chrome/browser/resources/set_as_default_browser.html b/chrome/browser/resources/set_as_default_browser.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c09a2b8857999861aafa182f7de65a4ffb0dbf4f |
| --- /dev/null |
| +++ b/chrome/browser/resources/set_as_default_browser.html |
| @@ -0,0 +1,47 @@ |
| +<!DOCTYPE HTML> |
| +<!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| +<html i18n-values="dir:textdirection"> |
| +<head> |
| +<meta charset="utf-8"> |
| +<title i18n-content="page-title"></title> |
| +<script src="chrome://resources/js/local_strings.js"></script> |
| +<script src="chrome://resources/js/cr.js"></script> |
| +<script src="chrome://resources/js/util.js"></script> |
| +<script src="chrome://resources/js/cr/event_target.js"></script> |
| +<script src="strings.js"></script> |
| +<script src="set_as_default_browser.js"></script> |
| + |
|
James Hawkins
2012/06/22 20:04:52
nit: Remove all blank lines.
motek.
2012/06/22 20:40:18
Done.
|
| +<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> |
| +<link rel="stylesheet" href="chrome://resources/css/widgets.css"> |
| +<link rel="stylesheet" href="set_as_default_browser.css"> |
| + |
| +</head> |
| + |
| +<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| + |
| +<div id="metro-setup-outer-container"> |
| + <div id="metro-setup-overlay" class="page"> |
| + <div> |
| + <div> |
|
James Hawkins
2012/06/22 20:04:52
nit: Remove extra div.
motek.
2012/06/22 20:40:18
Done.
|
| + <div class="content-area"> |
| + <h1 i18n-content="flowTitle"></h1> |
| + <h2 i18n-content="flowDescription"></h2> |
| + </div> |
| + <div id="metro-action-box" class="content-area"> |
| + <div class="button-strip"> |
| + <button id="launch-button" class="custom-appearance" |
| + i18n-content="flowNext"></button> |
| + <button id="return-button" i18n-content="flowCancel"></button> |
| + </div> |
| + </div> |
| + </div> |
| + </div> |
| + </div> |
| +</div> |
| + |
| +</body> |
| +<script src="chrome://resources/js/i18n_template.js"></script> |
| +<script src="chrome://resources/js/i18n_process.js"></script> |
| +</html> |