Chromium Code Reviews| Index: sync/internal_api/public/sessions/sync_session_snapshot.h |
| diff --git a/sync/internal_api/public/sessions/sync_session_snapshot.h b/sync/internal_api/public/sessions/sync_session_snapshot.h |
| index 9029132cc3a9c04f25801dd0ee499187d347a4ff..8f5d4656404b42f1e302b67f2ada70d0bd522a65 100644 |
| --- a/sync/internal_api/public/sessions/sync_session_snapshot.h |
| +++ b/sync/internal_api/public/sessions/sync_session_snapshot.h |
| @@ -72,6 +72,9 @@ class SyncSessionSnapshot { |
| base::Time sync_start_time() const; |
| bool retry_scheduled() const; |
| + // Set iff this snapshot was built using the default constructor. |
|
akalin
2012/07/02 21:18:25
don't you mean 'not built'?
rlarocque
2012/07/02 21:50:26
Correct. I negated the logic of this flag at one
|
| + bool is_initialized() const; |
| + |
| private: |
| ModelNeutralState model_neutral_state_; |
| bool is_share_usable_; |
| @@ -88,6 +91,8 @@ class SyncSessionSnapshot { |
| size_t num_entries_; |
| base::Time sync_start_time_; |
| bool retry_scheduled_; |
| + |
| + bool is_initialized_; |
| }; |
| } // namespace sessions |