Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 }); |
| OLD | NEW |