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

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..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);
};

Powered by Google App Engine
This is Rietveld 408576698