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

Unified Diff: chrome/browser/resources/welcome/welcome.html

Issue 2252063002: Adding client code for new desktop First Run Experience. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing michaelpg comments Created 4 years, 3 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/welcome/welcome.html
diff --git a/chrome/browser/resources/welcome/welcome.html b/chrome/browser/resources/welcome/welcome.html
new file mode 100644
index 0000000000000000000000000000000000000000..32742683bf7a4bb784a865434f61098a1156afca
--- /dev/null
+++ b/chrome/browser/resources/welcome/welcome.html
@@ -0,0 +1,41 @@
+<!doctype html>
+<html>
+<head>
+ <title>$i18n{headerText}</title>
+
+ <link rel="import" href="chrome://resources/html/polymer.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html">
+
+ <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
+ <link rel="stylesheet" href="chrome://welcome/welcome.css">
+
+ <script src="chrome://resources/js/load_time_data.js"></script>
+ <script src="chrome://welcome/welcome.js"></script>
+
+</head>
+<body>
+ <div class="spacer"></div>
+ <div class="content">
+ <div class="logo">
+ <div class="logo-icon">
+ <img src="chrome://welcome/logo.png" class="logo-bw">
+ <img src="chrome://welcome/logo.png" class="logo-color">
+ </div>
+ <div class="logo-shadow"></div>
+ </div>
+ <div class="heading">$i18n{headerText}</div>
+ <if expr="_google_chrome">
michaelpg 2016/09/09 05:36:26 don't ask me why, but we don't indent <if> normall
+ <div class="subheading">$i18n{subheaderText}</div>
+ </if>
+ <div class="signin">
+ <div class="signin-description">$i18n{descriptionText}</div>
+ <div class="signin-buttons">
+ <paper-button class="action">$i18n{acceptText}</paper-button>
+ <a href="#" class="link">$i18n{declineText}</a>
+ </div>
+ </div>
+ </div>
+ <div class="watermark">
michaelpg 2016/09/09 05:36:26 </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698