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

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

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 years, 9 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
deleted file mode 100644
index 5355a3bbf90270b418291606412abe4b2479fe19..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/internal_api/includes/syncer_error.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-// 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
-

Powered by Google App Engine
This is Rietveld 408576698