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

Unified Diff: sync/protocol/sync_protocol_error.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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 | « sync/protocol/sync_protocol_error.h ('k') | sync/protocol/synced_notification_app_info_specifics.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/protocol/sync_protocol_error.cc
diff --git a/sync/protocol/sync_protocol_error.cc b/sync/protocol/sync_protocol_error.cc
deleted file mode 100644
index e7cee2431520fa6eb4062a3ce571e0a5fd43e3aa..0000000000000000000000000000000000000000
--- a/sync/protocol/sync_protocol_error.cc
+++ /dev/null
@@ -1,69 +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 "sync/protocol/sync_protocol_error.h"
-
-#include <string>
-
-#include "base/logging.h"
-#include "base/values.h"
-
-namespace syncer {
-#define ENUM_CASE(x) case x: return #x; break;
-
-const char* GetSyncErrorTypeString(SyncProtocolErrorType type) {
- switch (type) {
- ENUM_CASE(SYNC_SUCCESS);
- ENUM_CASE(NOT_MY_BIRTHDAY);
- ENUM_CASE(THROTTLED);
- ENUM_CASE(CLEAR_PENDING);
- ENUM_CASE(TRANSIENT_ERROR);
- ENUM_CASE(MIGRATION_DONE);
- ENUM_CASE(INVALID_CREDENTIAL);
- ENUM_CASE(DISABLED_BY_ADMIN);
- ENUM_CASE(PARTIAL_FAILURE);
- ENUM_CASE(CLIENT_DATA_OBSOLETE);
- ENUM_CASE(UNKNOWN_ERROR);
- }
- NOTREACHED();
- return "";
-}
-
-const char* GetClientActionString(ClientAction action) {
- switch (action) {
- ENUM_CASE(UPGRADE_CLIENT);
- ENUM_CASE(CLEAR_USER_DATA_AND_RESYNC);
- ENUM_CASE(ENABLE_SYNC_ON_ACCOUNT);
- ENUM_CASE(STOP_AND_RESTART_SYNC);
- ENUM_CASE(DISABLE_SYNC_ON_CLIENT);
- ENUM_CASE(STOP_SYNC_FOR_DISABLED_ACCOUNT);
- ENUM_CASE(RESET_LOCAL_SYNC_DATA);
- ENUM_CASE(UNKNOWN_ACTION);
- }
- NOTREACHED();
- return "";
-}
-
-SyncProtocolError::SyncProtocolError()
- : error_type(UNKNOWN_ERROR),
- action(UNKNOWN_ACTION) {
-}
-
-SyncProtocolError::SyncProtocolError(const SyncProtocolError& other) = default;
-
-SyncProtocolError::~SyncProtocolError() {
-}
-
-base::DictionaryValue* SyncProtocolError::ToValue() const {
- base::DictionaryValue* value = new base::DictionaryValue();
- value->SetString("ErrorType",
- GetSyncErrorTypeString(error_type));
- value->SetString("ErrorDescription", error_description);
- value->SetString("url", url);
- value->SetString("action", GetClientActionString(action));
- return value;
-}
-
-} // namespace syncer
-
« no previous file with comments | « sync/protocol/sync_protocol_error.h ('k') | sync/protocol/synced_notification_app_info_specifics.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698