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

Unified Diff: chrome/common/metrics/proto/system_profile.proto

Issue 25364002: Add multi_profile_user_count field to system_profile proto. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/common/metrics/proto/system_profile.proto
diff --git a/chrome/common/metrics/proto/system_profile.proto b/chrome/common/metrics/proto/system_profile.proto
index 65940aba5a3b5bfada4eabfc3c75bb768b7c0f10..38ca1aec93afdf254db0effa5e7f094f0a6d8527 100644
--- a/chrome/common/metrics/proto/system_profile.proto
+++ b/chrome/common/metrics/proto/system_profile.proto
@@ -11,7 +11,7 @@ option optimize_for = LITE_RUNTIME;
package metrics;
-// Next tag: 17
+// Next tag: 18
message SystemProfileProto {
// The time when the client was compiled/linked, in seconds since the epoch.
optional int64 build_timestamp = 1;
@@ -319,7 +319,7 @@ message SystemProfileProto {
// If a client has multiple local Chrome user accounts, this is logged based
// on the first user account launched during the current session.
optional bool is_disabled = 4;
-
+
// True if the plugin is PPAPI.
optional bool is_pepper = 5;
}
@@ -437,4 +437,9 @@ message SystemProfileProto {
optional fixed32 group_id = 2;
}
repeated FieldTrial field_trial = 9;
+
+ // Number of users currently signed into a multiprofile session.
+ // Non-positive values indicates that the count is unknown or ambiguous.
+ // Logged only on ChromeOS.
+ optional int32 multi_profile_user_count = 17;
Ilya Sherman 2013/09/30 23:42:52 Can this be an unsigned field? If not, please doc
Tim Song 2013/10/05 01:25:23 Done. I wanted to leave open the possibility of us
}
« chrome/browser/metrics/metrics_log.cc ('K') | « chrome/browser/metrics/metrics_log.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698