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

Unified Diff: sync/protocol/sync_protocol_error.h

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_proto_export.h ('k') | sync/protocol/sync_protocol_error.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/protocol/sync_protocol_error.h
diff --git a/sync/protocol/sync_protocol_error.h b/sync/protocol/sync_protocol_error.h
deleted file mode 100644
index 2ba65d5a1a13d67e1a1d1fec94822d11d7d189fd..0000000000000000000000000000000000000000
--- a/sync/protocol/sync_protocol_error.h
+++ /dev/null
@@ -1,96 +0,0 @@
-// Copyright 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.
-#ifndef SYNC_PROTOCOL_SYNC_PROTOCOL_ERROR_H_
-#define SYNC_PROTOCOL_SYNC_PROTOCOL_ERROR_H_
-
-#include <string>
-
-#include "base/values.h"
-#include "sync/base/sync_export.h"
-#include "sync/internal_api/public/base/model_type.h"
-
-namespace syncer {
-
-enum SyncProtocolErrorType {
- // Success case.
- SYNC_SUCCESS,
-
- // Birthday does not match that of the server.
- NOT_MY_BIRTHDAY,
-
- // Server is busy. Try later.
- THROTTLED,
-
- // Clear user data is being currently executed by the server.
- CLEAR_PENDING,
-
- // Server cannot service the request now.
- TRANSIENT_ERROR,
-
- // Indicates the datatypes have been migrated and the client should resync
- // them to get the latest progress markers.
- MIGRATION_DONE,
-
- // Invalid Credential.
- INVALID_CREDENTIAL,
-
- // An administrator disabled sync for this domain.
- DISABLED_BY_ADMIN,
-
- // Some of servers are busy. Try later with busy servers.
- PARTIAL_FAILURE,
-
- // Returned when server detects that this client's data is obsolete. Client
- // should reset local data and restart syncing.
- CLIENT_DATA_OBSOLETE,
-
- // The default value.
- UNKNOWN_ERROR
-};
-
-enum ClientAction {
- // Upgrade the client to latest version.
- UPGRADE_CLIENT,
-
- // Clear user data and setup sync again.
- CLEAR_USER_DATA_AND_RESYNC,
-
- // Set the bit on the account to enable sync.
- ENABLE_SYNC_ON_ACCOUNT,
-
- // Stop sync and restart sync.
- STOP_AND_RESTART_SYNC,
-
- // Wipe this client of any sync data.
- DISABLE_SYNC_ON_CLIENT,
-
- // Account is disabled by admin. Stop sync, clear prefs and show message on
- // settings page that account is disabled.
- STOP_SYNC_FOR_DISABLED_ACCOUNT,
-
- // Generated in response to CLIENT_DATA_OBSOLETE error. ProfileSyncService
- // should stop sync engine, delete directory and restart sync engine.
- RESET_LOCAL_SYNC_DATA,
-
- // The default. No action.
- UNKNOWN_ACTION
-};
-
-struct SYNC_EXPORT SyncProtocolError {
- SyncProtocolErrorType error_type;
- std::string error_description;
- std::string url;
- ClientAction action;
- ModelTypeSet error_data_types;
- SyncProtocolError();
- SyncProtocolError(const SyncProtocolError& other);
- ~SyncProtocolError();
- base::DictionaryValue* ToValue() const;
-};
-
-SYNC_EXPORT const char* GetSyncErrorTypeString(SyncProtocolErrorType type);
-SYNC_EXPORT const char* GetClientActionString(ClientAction action);
-} // namespace syncer
-#endif // SYNC_PROTOCOL_SYNC_PROTOCOL_ERROR_H_
-
« no previous file with comments | « sync/protocol/sync_proto_export.h ('k') | sync/protocol/sync_protocol_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698