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..cfa7bc028020da8eba839dacb5d979a24b42f6d6 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 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. |
|
tim (not reviewing)
2011/10/13 21:48:14
remove from here and add this comment to session_s
lipalani1
2011/10/14 18:31:10
Done.
|
| + // False indicates we are yet to send it. |
| + bool debug_info_sent_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(StatusController); |
| }; |