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

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

Issue 2756863002: ChromeOS: Powerwash UI update (Closed)
Patch Set: merge Created 3 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview Polymer element for displaying material design reset
7 * confirmation overlay screen.
8 */
9
10 Polymer({
11 is: 'reset-confirm-overlay-md',
12
13 properties: {
14 isPowerwashView_: Boolean,
15 },
16
17 /**
18 * On-tap event handler for continue button.
19 */
20 onContinueTap_: function() {
21 chrome.send('login.ResetScreen.userActed', ['powerwash-pressed']);
22 },
23
24 /**
25 * On-tap event handler for cancel button.
26 */
27 onCancelTap_: function() {
28 chrome.send('login.ResetScreen.userActed', ['reset-confirm-dismissed']);
29 },
30 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698