| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // `7MM"""Mq. `7MM | 5 // `7MM"""Mq. `7MM |
| 6 // MM `MM. MM | 6 // MM `MM. MM |
| 7 // MM ,M9 .gP"Ya ,6"Yb. ,M""bMM `7MMpMMMb.pMMMb. .gP"Ya | 7 // MM ,M9 .gP"Ya ,6"Yb. ,M""bMM `7MMpMMMb.pMMMb. .gP"Ya |
| 8 // MMmmdM9 ,M' Yb 8) MM ,AP MM MM MM MM ,M' Yb | 8 // MMmmdM9 ,M' Yb 8) MM ,AP MM MM MM MM ,M' Yb |
| 9 // MM YM. 8M"""""" ,pm9MM 8MI MM MM MM MM 8M"""""" | 9 // MM YM. 8M"""""" ,pm9MM 8MI MM MM MM MM 8M"""""" |
| 10 // MM `Mb.YM. , 8M MM `Mb MM MM MM MM YM. , | 10 // MM `Mb.YM. , 8M MM `Mb MM MM MM MM YM. , |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 AUTHENTICATION_FAILED: 9, | 341 AUTHENTICATION_FAILED: 9, |
| 342 BAD_VERSION: 10, | 342 BAD_VERSION: 10, |
| 343 HOST_OVERLOAD: 11, | 343 HOST_OVERLOAD: 11, |
| 344 P2P_FAILURE: 12, | 344 P2P_FAILURE: 12, |
| 345 UNEXPECTED: 13, | 345 UNEXPECTED: 13, |
| 346 CLIENT_SUSPENDED: 14, | 346 CLIENT_SUSPENDED: 14, |
| 347 NACL_DISABLED: 15, | 347 NACL_DISABLED: 15, |
| 348 MAX_SESSION_LENGTH: 16, | 348 MAX_SESSION_LENGTH: 16, |
| 349 HOST_CONFIGURATION_ERROR: 17, | 349 HOST_CONFIGURATION_ERROR: 17, |
| 350 NACL_PLUGIN_CRASHED: 18, | 350 NACL_PLUGIN_CRASHED: 18, |
| 351 INVALID_ACCOUNT: 19, |
| 351 }; | 352 }; |
| 352 | 353 |
| 353 /** @enum {number} */ | 354 /** @enum {number} */ |
| 354 remoting.ChromotingEvent.Mode = { | 355 remoting.ChromotingEvent.Mode = { |
| 355 IT2ME: 1, | 356 IT2ME: 1, |
| 356 ME2ME: 2, | 357 ME2ME: 2, |
| 357 LGAPP: 3 | 358 LGAPP: 3 |
| 358 }; | 359 }; |
| 359 | 360 |
| 360 /** @enum {number} */ | 361 /** @enum {number} */ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 372 FAILED_LATE: 5 | 373 FAILED_LATE: 5 |
| 373 }; | 374 }; |
| 374 | 375 |
| 375 /** @enum {number} */ | 376 /** @enum {number} */ |
| 376 remoting.ChromotingEvent.AuthMethod = { | 377 remoting.ChromotingEvent.AuthMethod = { |
| 377 PIN: 1, | 378 PIN: 1, |
| 378 ACCESS_CODE: 2, | 379 ACCESS_CODE: 2, |
| 379 PINLESS: 3, | 380 PINLESS: 3, |
| 380 THIRD_PARTY: 4, | 381 THIRD_PARTY: 4, |
| 381 }; | 382 }; |
| OLD | NEW |