1 // Copyright (c) 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.
5 #include "sync/internal_api/public/sessions/model_neutral_state.h"
10 ModelNeutralState::ModelNeutralState()
11 : num_successful_commits(0),
12 num_successful_bookmark_commits(0),
13 num_updates_downloaded_total(0),
14 num_tombstone_updates_downloaded_total(0),
15 num_reflected_updates_downloaded_total(0),
16 num_updates_applied(0),
17 num_encryption_conflicts(0),
18 num_server_conflicts(0),
19 num_hierarchy_conflicts(0),
20 num_local_overwrites(0),
21 num_server_overwrites(0),
22 last_get_key_result(UNSET
),
23 last_download_updates_result(UNSET
),
25 items_committed(false) {
28 ModelNeutralState::~ModelNeutralState() {}
30 bool HasSyncerError(const ModelNeutralState
& state
) {
31 const bool get_key_error
= SyncerErrorIsError(state
.last_get_key_result
);
32 const bool download_updates_error
=
33 SyncerErrorIsError(state
.last_download_updates_result
);
34 const bool commit_error
= SyncerErrorIsError(state
.commit_result
);
35 return get_key_error
|| download_updates_error
|| commit_error
;
38 } // namespace sessions