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

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

Issue 2700353002: ChromeOS OOBE: Fix EULA Back button. (Closed)
Patch Set: Created 3 years, 10 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
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 OOBE. 6 * @fileoverview Polymer element for displaying material design OOBE.
7 */ 7 */
8 8
9 Polymer({ 9 Polymer({
10 is: 'oobe-welcome-md', 10 is: 'oobe-welcome-md',
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 OpenAddMobileNetworkDialog_: function(item) { 289 OpenAddMobileNetworkDialog_: function(item) {
290 chrome.send('launchAddMobileNetworkDialog'); 290 chrome.send('launchAddMobileNetworkDialog');
291 }, 291 },
292 292
293 /** 293 /**
294 * This is called when network setup is done. 294 * This is called when network setup is done.
295 * 295 *
296 * @private 296 * @private
297 */ 297 */
298 onSelectedNetworkConnected_: function() { 298 onSelectedNetworkConnected_: function() {
299 this.networkLastSelectedGuid_ = '';
299 chrome.send('login.NetworkScreen.userActed', ['continue']); 300 chrome.send('login.NetworkScreen.userActed', ['continue']);
300 }, 301 },
301 302
302 /** 303 /**
303 * This gets called whenever the default network changes. 304 * This gets called whenever the default network changes.
304 * @param {!{detail: ?CrOnc.NetworkStateProperties}} event 305 * @param {!{detail: ?CrOnc.NetworkStateProperties}} event
305 * @private 306 * @private
306 */ 307 */
307 onDefaultNetworkChanged_: function(event) { 308 onDefaultNetworkChanged_: function(event) {
308 var state = event.detail; 309 var state = event.detail;
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 /** 469 /**
469 * This function formats message for labels. 470 * This function formats message for labels.
470 * @param String label i18n string ID. 471 * @param String label i18n string ID.
471 * @param String parameter i18n string parameter. 472 * @param String parameter i18n string parameter.
472 * @private 473 * @private
473 */ 474 */
474 formatMessage_: function(label, parameter) { 475 formatMessage_: function(label, parameter) {
475 return loadTimeData.getStringF(label, parameter); 476 return loadTimeData.getStringF(label, parameter);
476 }, 477 },
477 }); 478 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698