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

Side by Side Diff: sync/internal_api/public/util/syncer_error.cc

Issue 238273008: Add an action for server to send down rollback command. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « sync/internal_api/public/util/syncer_error.h ('k') | sync/protocol/proto_enum_conversions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "sync/internal_api/public/util/syncer_error.h" 5 #include "sync/internal_api/public/util/syncer_error.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace syncer { 9 namespace syncer {
10 10
11 #define ENUM_CASE(x) case x: return #x; break; 11 #define ENUM_CASE(x) case x: return #x; break;
12 const char* GetSyncerErrorString(SyncerError value) { 12 const char* GetSyncerErrorString(SyncerError value) {
13 switch (value) { 13 switch (value) {
14 ENUM_CASE(UNSET); 14 ENUM_CASE(UNSET);
15 ENUM_CASE(CANNOT_DO_WORK); 15 ENUM_CASE(CANNOT_DO_WORK);
16 ENUM_CASE(NETWORK_CONNECTION_UNAVAILABLE); 16 ENUM_CASE(NETWORK_CONNECTION_UNAVAILABLE);
17 ENUM_CASE(NETWORK_IO_ERROR); 17 ENUM_CASE(NETWORK_IO_ERROR);
18 ENUM_CASE(SYNC_SERVER_ERROR); 18 ENUM_CASE(SYNC_SERVER_ERROR);
19 ENUM_CASE(SYNC_AUTH_ERROR); 19 ENUM_CASE(SYNC_AUTH_ERROR);
20 ENUM_CASE(SERVER_RETURN_INVALID_CREDENTIAL); 20 ENUM_CASE(SERVER_RETURN_INVALID_CREDENTIAL);
21 ENUM_CASE(SERVER_RETURN_UNKNOWN_ERROR); 21 ENUM_CASE(SERVER_RETURN_UNKNOWN_ERROR);
22 ENUM_CASE(SERVER_RETURN_THROTTLED); 22 ENUM_CASE(SERVER_RETURN_THROTTLED);
23 ENUM_CASE(SERVER_RETURN_TRANSIENT_ERROR); 23 ENUM_CASE(SERVER_RETURN_TRANSIENT_ERROR);
24 ENUM_CASE(SERVER_RETURN_MIGRATION_DONE); 24 ENUM_CASE(SERVER_RETURN_MIGRATION_DONE);
25 ENUM_CASE(SERVER_RETURN_CLEAR_PENDING); 25 ENUM_CASE(SERVER_RETURN_CLEAR_PENDING);
26 ENUM_CASE(SERVER_RETURN_NOT_MY_BIRTHDAY); 26 ENUM_CASE(SERVER_RETURN_NOT_MY_BIRTHDAY);
27 ENUM_CASE(SERVER_RETURN_CONFLICT); 27 ENUM_CASE(SERVER_RETURN_CONFLICT);
28 ENUM_CASE(SERVER_RESPONSE_VALIDATION_FAILED); 28 ENUM_CASE(SERVER_RESPONSE_VALIDATION_FAILED);
29 ENUM_CASE(SERVER_RETURN_DISABLED_BY_ADMIN); 29 ENUM_CASE(SERVER_RETURN_DISABLED_BY_ADMIN);
30 ENUM_CASE(SERVER_RETURN_USER_ROLLBACK);
30 ENUM_CASE(SERVER_MORE_TO_DOWNLOAD); 31 ENUM_CASE(SERVER_MORE_TO_DOWNLOAD);
31 ENUM_CASE(DATATYPE_TRIGGERED_RETRY); 32 ENUM_CASE(DATATYPE_TRIGGERED_RETRY);
32 ENUM_CASE(SYNCER_OK); 33 ENUM_CASE(SYNCER_OK);
33 } 34 }
34 NOTREACHED(); 35 NOTREACHED();
35 return "INVALID"; 36 return "INVALID";
36 } 37 }
37 #undef ENUM_CASE 38 #undef ENUM_CASE
38 39
39 bool SyncerErrorIsError(SyncerError error) { 40 bool SyncerErrorIsError(SyncerError error) {
40 return error != UNSET 41 return error != UNSET
41 && error != SYNCER_OK 42 && error != SYNCER_OK
42 && error != SERVER_MORE_TO_DOWNLOAD; 43 && error != SERVER_MORE_TO_DOWNLOAD;
43 } 44 }
44 45
45 } // namespace syncer 46 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/public/util/syncer_error.h ('k') | sync/protocol/proto_enum_conversions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698