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

Unified Diff: blimp/helium/errors.h

Issue 2402153002: Add CompoundSyncable class for synchronizing containers of Syncables. (Closed)
Patch Set: make literal unsigned 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/helium/compound_syncable_unittest.cc ('k') | blimp/helium/helium_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/helium/errors.h
diff --git a/blimp/helium/errors.h b/blimp/helium/errors.h
index 687b4b42de1894596e5b54b9320e794c2889d158..1829242ebd69193d2b576cfc88be5304a8f6ebe3 100644
--- a/blimp/helium/errors.h
+++ b/blimp/helium/errors.h
@@ -5,10 +5,10 @@
// This file intentionally does not have header guards, it's included
// inside a macro to generate enum values.
-// This file contains the list of Helium error codes.
-
-HELIUM_ERROR(INTERNAL_ERROR, 1)
-
// The operation could not be performed because the connection to the peer was
// lost.
-HELIUM_ERROR(DISCONNECTED, 2)
+HELIUM_ERROR(DISCONNECTED, 1)
+
+// The remote end provided data which is not compliant with the protocol.
+HELIUM_ERROR(PROTOCOL_ERROR, 2)
+
« no previous file with comments | « blimp/helium/compound_syncable_unittest.cc ('k') | blimp/helium/helium_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698