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

Side by Side Diff: blimp/net/helium/helium_errors.h

Issue 2385913002: Define canonical enum for "HeliumResult" status values. (Closed)
Patch Set: Created 4 years, 2 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698