Chromium Code Reviews| Index: chrome/browser/sync/sessions/status_controller.h |
| diff --git a/chrome/browser/sync/sessions/status_controller.h b/chrome/browser/sync/sessions/status_controller.h |
| index a12bee87e8fd6074a47a9f00dbb75c464e9e67c0..cff90bbee245a494206562d21fda7ab022c44ae4 100644 |
| --- a/chrome/browser/sync/sessions/status_controller.h |
| +++ b/chrome/browser/sync/sessions/status_controller.h |
| @@ -239,6 +239,10 @@ class StatusController { |
| void SetSyncInProgressAndUpdateStartTime(bool sync_in_progress); |
| + void set_debug_info_sent(bool value); |
| + |
| + bool debug_info_sent(); |
| + |
| private: |
| friend class ScopedModelSafeGroupRestriction; |
| @@ -269,6 +273,10 @@ class StatusController { |
| base::Time sync_start_time_; |
| + // True indicates we have sent the debug info already once this session. |
| + // False indicates we are yet to send it. |
| + bool debug_info_sent_; |
|
tim (not reviewing)
2011/10/13 16:04:14
Do not add state like this here. This belongs in
lipalani1
2011/10/13 21:39:18
Done.
|
| + |
| DISALLOW_COPY_AND_ASSIGN(StatusController); |
| }; |