Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file intentionally does not have header guards, it's included | |
| 6 // inside a macro to generate enum values. | |
| 7 | |
| 8 // This file contains the list of Helium error codes. | |
| 9 | |
| 10 // A generic failure occurred. | |
| 11 HELIUM_ERROR(FAILED, 1) | |
|
Garrett Casto
2016/10/03 18:40:47
Nit: OK, FAILED, and CONNECTION_LOST were spelled
Kevin M
2016/10/03 22:32:19
OK, I'll add those. This CL is primarily about est
| |
| 12 | |
| 13 // The operation could not be performed because the connection to the peer was | |
| 14 // lost. | |
| 15 HELIUM_ERROR(CONNECTION_LOST, 2) | |
|
scf
2016/10/03 17:57:44
move the comment into a string? and use this for t
Kevin M
2016/10/03 22:32:19
That could be nice for logging, but I am a little
| |
| OLD | NEW |