| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Network status constants. | 6 // Network status constants. |
| 7 const StatusConnected = 'connected'; | 7 const StatusConnected = 'connected'; |
| 8 const StatusDisconnected = 'disconnected'; | 8 const StatusDisconnected = 'disconnected'; |
| 9 const StatusConnecting = 'connecting'; | 9 const StatusConnecting = 'connecting'; |
| 10 const StatusError = 'error'; | 10 const StatusError = 'error'; |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 event.target == item.autoConnectCheckbox.nextElementSibling || | 352 event.target == item.autoConnectCheckbox.nextElementSibling || |
| 353 event.target == item.ssidEdit || | 353 event.target == item.ssidEdit || |
| 354 event.target == item.passwordEdit) { | 354 event.target == item.passwordEdit) { |
| 355 return; | 355 return; |
| 356 } | 356 } |
| 357 } | 357 } |
| 358 | 358 |
| 359 Menu.prototype.onClick_.call(this, event, item); | 359 Menu.prototype.onClick_.call(this, event, item); |
| 360 }, | 360 }, |
| 361 }; | 361 }; |
| OLD | NEW |