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

Unified Diff: chrome/browser/resources/welcome/win10/inline/combined.html

Issue 2401853005: Adding client code for new Windows 10 First Run Experience (Closed)
Patch Set: Created 4 years, 2 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/win10/inline/combined.html
diff --git a/chrome/browser/resources/welcome/win10/inline/combined.html b/chrome/browser/resources/welcome/win10/inline/combined.html
new file mode 100644
index 0000000000000000000000000000000000000000..70c3d6cf35ef2b1ac777ca26a4ca29ed5b8e41a7
--- /dev/null
+++ b/chrome/browser/resources/welcome/win10/inline/combined.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>$i18n{headerText}</title>
+
+ <link rel="import" href="chrome://resources/html/cr.html">
+ <link rel="import" href="chrome://resources/html/load_time_data.html">
+ <link rel="import" href="chrome://resources/html/polymer.html">
+ <link rel="import" href="chrome://resources/html/util.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html">
+ <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.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-win10/welcome.css">
+
+ <script src="chrome://welcome-win10/welcome.js"></script>
+ <script src="chrome://welcome-win10/strings.js"></script>
+</head>
+<body>
+ <div class="content">
+ <img src="logo4x.png" class="header-logo">
tmartino 2016/10/12 22:06:39 We need to support 2x resolutions, so let's change
Patrick Monette 2016/10/13 21:30:05 Done, but I went with content: instead of backgrou
+ <p class="heading">$i18n{headerText}</p>
tmartino 2016/10/12 22:06:39 In general, I've been told the WebUI folks prefer
Patrick Monette 2016/10/13 21:30:05 Done.
+ <div class="subheading">$i18n{subheaderText}</div>
+ <div class="sections">
+ <div class="section section--expanded">
+ <div class="section-heading section-heading--expandable">
+ <p class="section-heading-text">$i18n{defaultBrowserSubheaderText}</p>
+ <iron-icon class="section-heading-expand" icon="icons:expand-more"></iron-icon>
+ </div>
+ <ol class="section-steps">
+ <li><a href="#" id="set-default-button">$i18n{openSettingsText}</a></li>
+ <li>
+ <p id="section-steps--click-edge">
+ </p>
+ <div class="screenshot-image screenshot-image--visible" id="screenshot-image--default">
+ <div class="screenshot-html-overlay" id="screenshot-html-overlay--browser">
+ <p>$i18n{webBrowserLabel}</p>
+ </div>
+ <div class="screenshot-html-overlay" id="screenshot-html-overlay--edge">
+ <p>$i18n{microsoftEdgeLabel}</p>
+ </div>
+ </div>
+ </li>
+ <li id="section-steps--select-chrome"></li>
+ </ol>
+ </div>
+ <div class="section">
+ <div class="section-heading section-heading--expandable">
+ <p class="section-heading-text">$i18n{pinSubheaderText}</p>
+ <iron-icon class="section-heading-expand" icon="icons:expand-more"></iron-icon>
+ </div>
+ <ol class="section-steps">
+ <li id="section-steps--right-click"></li>
+ <li>
+ <p id="section-steps--pin-taskbar">
+ </p>
+ <div class="screenshot-image screenshot-image--visible" id="screenshot-image--taskbar">
+ <div class="screenshot-html-overlay" id="screenshot-html-overlay--taskbar">
+ <p>$i18n{pinToTaskbarLabel}</p>
+ </div>
+ <div class="screenshot-html-overlay" id="screenshot-html-overlay--icon"></div>
+ </div>
+ </li>
+ </ol>
+ </div>
+ </div>
+ <a href="#" class="button" id="continue-button">$i18n{continueText}</a>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698