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

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

Issue 2338213007: Adding JS and C++ handlers for events on new Welcome page. (Closed)
Patch Set: Forward Declarations 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
« no previous file with comments | « no previous file | chrome/browser/resources/welcome/welcome.js » ('j') | chrome/browser/ui/webui/welcome_ui.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/welcome/welcome.html
diff --git a/chrome/browser/resources/welcome/welcome.html b/chrome/browser/resources/welcome/welcome.html
index f3408af18ed21a9bfc0b9a2c905d41e6b85768d7..30a33ec645a202fbced1d402a7b0cdea704a4095 100644
--- a/chrome/browser/resources/welcome/welcome.html
+++ b/chrome/browser/resources/welcome/welcome.html
@@ -3,14 +3,15 @@
<head>
<title>$i18n{headerText}</title>
+ <link rel="import" href="chrome://resources/html/cr.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/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>
@@ -31,8 +32,8 @@
<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>
+ <paper-button class="action" id="accept-button">$i18n{acceptText}</paper-button>
+ <a href="#" class="link" id="decline-button">$i18n{declineText}</a>
</div>
</div>
</div>
« no previous file with comments | « no previous file | chrome/browser/resources/welcome/welcome.js » ('j') | chrome/browser/ui/webui/welcome_ui.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698