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 #ifndef SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ |
6 #define SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ | 6 #define SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "sync/base/sync_export.h" | 10 #include "sync/base/sync_export.h" |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 int sync_cycles_without_commits; | 77 int sync_cycles_without_commits; |
78 | 78 |
79 // Count of useless and useful syncs we perform. | 79 // Count of useless and useful syncs we perform. |
80 int useless_sync_cycles; | 80 int useless_sync_cycles; |
81 int useful_sync_cycles; | 81 int useful_sync_cycles; |
82 | 82 |
83 // Encryption related. | 83 // Encryption related. |
84 ModelTypeSet encrypted_types; | 84 ModelTypeSet encrypted_types; |
85 bool cryptographer_ready; | 85 bool cryptographer_ready; |
86 bool crypto_has_pending_keys; | 86 bool crypto_has_pending_keys; |
87 bool has_keystore_key; | |
88 std::string keystore_migration_time; | |
akalin
2012/09/17 18:07:20
can you make _time be base::Time and do the string
Nicolas Zea
2012/09/17 21:00:24
Done.
| |
89 std::string passphrase_type; | |
akalin
2012/09/17 18:07:20
can you make passphrase_type be the enum type? Do
Nicolas Zea
2012/09/17 21:00:24
Done.
| |
87 | 90 |
88 // Per-datatype throttled status. | 91 // Per-datatype throttled status. |
89 ModelTypeSet throttled_types; | 92 ModelTypeSet throttled_types; |
90 | 93 |
91 // The unique identifer for this client. | 94 // The unique identifer for this client. |
92 std::string unique_id; | 95 std::string unique_id; |
93 }; | 96 }; |
94 | 97 |
95 } // namespace syncer | 98 } // namespace syncer |
96 | 99 |
97 #endif // SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ | 100 #endif // SYNC_INTERNAL_API_PUBLIC_ENGINE_STATUS_SUMMARY_H_ |
OLD | NEW |