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

Unified Diff: chrome/browser/resources/metroize/metroize.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: Fixed non-windows compilation errors. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/metroize/metroize.html
diff --git a/chrome/browser/resources/metroize/metroize.html b/chrome/browser/resources/metroize/metroize.html
new file mode 100644
index 0000000000000000000000000000000000000000..530535704241e16dc784e86214322206f9e98b52
--- /dev/null
+++ b/chrome/browser/resources/metroize/metroize.html
@@ -0,0 +1,46 @@
+<!-- Copyright (c) 2011 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. -->
+<!DOCTYPE HTML>
+<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="metroize.js"></script>
+
+<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+<link rel="stylesheet" href="chrome://resources/css/widgets.css">
+<link rel="stylesheet" href="metroize.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 id="metro-setup-view">
+ <div id="metro-setup-content-column">
+ <div id="metro-setup-title-container" class="content-area">
+ <h1 i18n-content="flowTitle"></h1>
+ <h2 i18n-content="flowDescription"></h2>
+ </div>
+ <div id="metro-action-box" class="content-area">
+ <span class="button-strip">
+ <button id="launch-button" class="custom-appearance"
+ i18n-content="flowNext"/>
+ <button id="return-button" i18n-content="flowCancel"/>
+ </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>

Powered by Google App Engine
This is Rietveld 408576698