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

Unified Diff: chrome/browser/sync/internal_api/includes/syncer_error.cc

Issue 9113024: Add return values to SyncerCommand (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move syncer_error.* to internal_api/includes Created 8 years, 11 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
Index: chrome/browser/sync/internal_api/includes/syncer_error.cc
diff --git a/chrome/browser/sync/internal_api/includes/syncer_error.cc b/chrome/browser/sync/internal_api/includes/syncer_error.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5355a3bbf90270b418291606412abe4b2479fe19
--- /dev/null
+++ b/chrome/browser/sync/internal_api/includes/syncer_error.cc
@@ -0,0 +1,36 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/sync/internal_api/includes/syncer_error.h"
+
+#include "base/logging.h"
+
+namespace browser_sync {
+
+#define ENUM_CASE(x) case x: return #x; break;
+const char* GetSyncerErrorString(SyncerError value) {
+ switch (value) {
+ ENUM_CASE(UNSET);
+ ENUM_CASE(DIRECTORY_LOOKUP_FAILED);
+ ENUM_CASE(NETWORK_CONNECTION_UNAVAILABLE);
+ ENUM_CASE(NETWORK_IO_ERROR);
+ ENUM_CASE(SYNC_SERVER_ERROR);
+ ENUM_CASE(SYNC_AUTH_ERROR);
+ ENUM_CASE(SERVER_RETURN_INVALID_CREDENTIAL);
+ ENUM_CASE(SERVER_RETURN_UNKNOWN_ERROR);
+ ENUM_CASE(SERVER_RETURN_THROTTLED);
+ ENUM_CASE(SERVER_RETURN_TRANSIENT_ERROR);
+ ENUM_CASE(SERVER_RETURN_MIGRATION_DONE);
+ ENUM_CASE(SERVER_RETURN_CLEAR_PENDING);
+ ENUM_CASE(SERVER_RETURN_NOT_MY_BIRTHDAY);
+ ENUM_CASE(SERVER_RESPONSE_VALIDATION_FAILED);
+ ENUM_CASE(SYNCER_OK);
+ }
+ NOTREACHED();
+ return "INVALID";
+}
+#undef ENUM_CASE
+
+} // namespace browser_sync
+
« no previous file with comments | « chrome/browser/sync/internal_api/includes/syncer_error.h ('k') | chrome/browser/sync/test/engine/fake_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698