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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_voice_interaction_value_prop.js

Issue 2984023002: Rename buttons for voice interaction value prop screen (Closed)
Patch Set: Created 3 years, 5 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/chromeos/login/oobe_voice_interaction_value_prop.js
diff --git a/chrome/browser/resources/chromeos/login/oobe_voice_interaction_value_prop.js b/chrome/browser/resources/chromeos/login/oobe_voice_interaction_value_prop.js
index 6292871e7384446a2c930607e6bb14ad55b1f29b..369d5bc865f3fb67fba46ff0e38f774b010f7681 100644
--- a/chrome/browser/resources/chromeos/login/oobe_voice_interaction_value_prop.js
+++ b/chrome/browser/resources/chromeos/login/oobe_voice_interaction_value_prop.js
@@ -79,14 +79,13 @@ Polymer({
initialized_: false,
/**
- * On-tap event handler for no thanks button.
+ * On-tap event handler for skip button.
*
* @private
*/
- onNoThanksTap_: function() {
+ onSkipTap_: function() {
chrome.send(
- 'login.VoiceInteractionValuePropScreen.userActed',
- ['no-thanks-pressed']);
+ 'login.VoiceInteractionValuePropScreen.userActed', ['skip-pressed']);
},
/**
@@ -99,14 +98,13 @@ Polymer({
},
/**
- * On-tap event handler for continue button.
+ * On-tap event handler for next button.
*
* @private
*/
- onContinueTap_: function() {
+ onNextTap_: function() {
chrome.send(
- 'login.VoiceInteractionValuePropScreen.userActed',
- ['continue-pressed']);
+ 'login.VoiceInteractionValuePropScreen.userActed', ['next-pressed']);
},
/**

Powered by Google App Engine
This is Rietveld 408576698