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

Unified Diff: google_apis/gcm/gcm_client.h

Issue 248213004: Record connection, registration, and receiving activities. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 8 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: google_apis/gcm/gcm_client.h
diff --git a/google_apis/gcm/gcm_client.h b/google_apis/gcm/gcm_client.h
index 5996c064c3eba9eb3bbbfc73bbf3736d0549a893..c913c855c3bda78b9274146a4a5f3f5713767b1b 100644
--- a/google_apis/gcm/gcm_client.h
+++ b/google_apis/gcm/gcm_client.h
@@ -105,6 +105,9 @@ class GCM_EXPORT GCMClient {
int send_queue_size;
int resend_queue_size;
+ std::vector<GCMStatsRecorder::ConnectionActivity> connection_activities;
Nicolas Zea 2014/04/23 23:37:04 I wonder if all of these should be encapsulated in
juyik 2014/04/24 00:53:45 Done.
+ std::vector<GCMStatsRecorder::RegistrationActivity> registration_activities;
+ std::vector<GCMStatsRecorder::ReceivingActivity> receiving_activities;
std::vector<GCMStatsRecorder::SendingActivity> sending_activities;
};

Powered by Google App Engine
This is Rietveld 408576698