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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_eula.js

Issue 2541333002: ChromeOS MD-OOBE: "Back" button for EULA screen. (Closed)
Patch Set: Rebased. Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Polymer element for displaying material design Terms Of Service 6 * @fileoverview Polymer element for displaying material design Terms Of Service
7 * screen. 7 * screen.
8 */ 8 */
9 9
10 Polymer({ 10 Polymer({
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 }, 94 },
95 95
96 /** 96 /**
97 * On-tap event handler for stats-help-link. 97 * On-tap event handler for stats-help-link.
98 * 98 *
99 * * @private 99 * * @private
100 */ 100 */
101 onUsageStatsHelpLinkClicked_: function() { 101 onUsageStatsHelpLinkClicked_: function() {
102 chrome.send('eulaOnLearnMore'); 102 chrome.send('eulaOnLearnMore');
103 }, 103 },
104
105 /**
106 * On-tap event handler for back button.
107 *
108 * * @private
xiyuan 2016/12/01 17:40:54 remove the extra '*' and space.
Alexander Alekseev 2016/12/01 23:20:08 Done.
109 */
110 onEulaBackButtonPressed_: function() {
111 chrome.send('login.EulaScreen.userActed', ['back-button']);
112 },
104 }); 113 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698