1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 #ifndef SYNC_PROTOCOL_SYNC_PROTOCOL_ERROR_H_
5 #define SYNC_PROTOCOL_SYNC_PROTOCOL_ERROR_H_
9 #include "base/values.h"
10 #include "sync/base/sync_export.h"
11 #include "sync/internal_api/public/base/model_type.h"
15 enum SyncProtocolErrorType
{
19 // Birthday does not match that of the server.
22 // Server is busy. Try later.
25 // Clear user data is being currently executed by the server.
28 // Server cannot service the request now.
31 // Server does not wish the client to retry any more until the action has
35 // Indicates the datatypes have been migrated and the client should resync
36 // them to get the latest progress markers.
39 // Invalid Credential.
42 // An administrator disabled sync for this domain.
50 // Upgrade the client to latest version.
53 // Clear user data and setup sync again.
54 CLEAR_USER_DATA_AND_RESYNC
,
56 // Set the bit on the account to enable sync.
57 ENABLE_SYNC_ON_ACCOUNT
,
59 // Stop sync and restart sync.
60 STOP_AND_RESTART_SYNC
,
62 // Wipe this client of any sync data.
63 DISABLE_SYNC_ON_CLIENT
,
65 // Account is disabled by admin. Stop sync, clear prefs and show message on
66 // settings page that account is disabled.
67 STOP_SYNC_FOR_DISABLED_ACCOUNT
,
69 // The default. No action.
73 struct SYNC_EXPORT SyncProtocolError
{
74 SyncProtocolErrorType error_type
;
75 std::string error_description
;
78 ModelTypeSet error_data_types
;
81 base::DictionaryValue
* ToValue() const;
84 SYNC_EXPORT
const char* GetSyncErrorTypeString(SyncProtocolErrorType type
);
85 SYNC_EXPORT
const char* GetClientActionString(ClientAction action
);
87 #endif // SYNC_PROTOCOL_SYNC_PROTOCOL_ERROR_H_