Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(755)

Unified Diff: chrome/browser/sync/sessions/status_controller.h

Issue 8189003: Send important client side event information to the server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698