| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sync/internal_api/public/engine/sync_status.h" | 5 #include "sync/internal_api/public/engine/sync_status.h" |
| 6 | 6 |
| 7 #include "sync/internal_api/public/util/sync_string_conversions.h" |
| 8 |
| 7 namespace syncer { | 9 namespace syncer { |
| 8 | 10 |
| 9 SyncStatus::SyncStatus() | 11 SyncStatus::SyncStatus() |
| 10 : notifications_enabled(false), | 12 : notifications_enabled(false), |
| 11 notifications_received(0), | 13 notifications_received(0), |
| 12 encryption_conflicts(0), | 14 encryption_conflicts(0), |
| 13 hierarchy_conflicts(0), | 15 hierarchy_conflicts(0), |
| 14 simple_conflicts(0), | 16 simple_conflicts(0), |
| 15 server_conflicts(0), | 17 server_conflicts(0), |
| 16 committed_count(0), | 18 committed_count(0), |
| 17 syncing(false), | 19 syncing(false), |
| 18 initial_sync_ended(false), | 20 initial_sync_ended(false), |
| 19 updates_available(0), | 21 updates_available(0), |
| 20 updates_received(0), | 22 updates_received(0), |
| 21 reflected_updates_received(0), | 23 reflected_updates_received(0), |
| 22 tombstone_updates_received(0), | 24 tombstone_updates_received(0), |
| 23 num_commits_total(0), | 25 num_commits_total(0), |
| 24 num_local_overwrites_total(0), | 26 num_local_overwrites_total(0), |
| 25 num_server_overwrites_total(0), | 27 num_server_overwrites_total(0), |
| 26 nonempty_get_updates(0), | 28 nonempty_get_updates(0), |
| 27 empty_get_updates(0), | 29 empty_get_updates(0), |
| 28 sync_cycles_with_commits(0), | 30 sync_cycles_with_commits(0), |
| 29 sync_cycles_without_commits(0), | 31 sync_cycles_without_commits(0), |
| 30 useless_sync_cycles(0), | 32 useless_sync_cycles(0), |
| 31 useful_sync_cycles(0), | 33 useful_sync_cycles(0), |
| 32 cryptographer_ready(false), | 34 cryptographer_ready(false), |
| 33 crypto_has_pending_keys(false) { | 35 crypto_has_pending_keys(false), |
| 36 has_keystore_key(false), |
| 37 keystore_migration_time("Not Migrated"), |
| 38 passphrase_type(PassphraseTypeToString(IMPLICIT_PASSPHRASE)) { |
| 34 } | 39 } |
| 35 | 40 |
| 36 SyncStatus::~SyncStatus() { | 41 SyncStatus::~SyncStatus() { |
| 37 } | 42 } |
| 38 | 43 |
| 39 } // namespace syncer | 44 } // namespace syncer |
| OLD | NEW |