Chromium Code Reviews| Index: chrome/browser/sync/engine/syncapi.h |
| diff --git a/chrome/browser/sync/engine/syncapi.h b/chrome/browser/sync/engine/syncapi.h |
| index a132fdf98fe720a1068542a7b740a092541252c0..771b1808cd5a06b1a3f799b6be7227481dff69b9 100644 |
| --- a/chrome/browser/sync/engine/syncapi.h |
| +++ b/chrome/browser/sync/engine/syncapi.h |
| @@ -702,6 +702,9 @@ class SyncManager { |
| SUMMARY_STATUS_COUNT, |
| }; |
| + Status(); |
| + ~Status(); |
| + |
| Summary summary; |
| bool authenticated; // Successfully authenticated via GAIA. |
| bool server_up; // True if we have received at least one good |
| @@ -747,6 +750,11 @@ class SyncManager { |
| // Count of useless and useful syncs we perform. |
| int useless_sync_cycles; |
| int useful_sync_cycles; |
| + |
| + // Encryption related. |
| + std::string encrypted_types; |
|
akalin
2011/08/04 01:14:48
I'd prefer storing it here as a ModelTypeSet/BitSe
Nicolas Zea
2011/08/04 01:27:52
Done.
|
| + bool cryptographer_ready; |
| + bool crypto_has_pending_keys; |
| }; |
| // An interface the embedding application implements to receive notifications |