Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Stores information about the user's brower and system configuration. | 5 // Stores information about the user's brower and system configuration. |
| 6 // The system configuration fields are recorded once per client session. | 6 // The system configuration fields are recorded once per client session. |
| 7 | 7 |
| 8 syntax = "proto2"; | 8 syntax = "proto2"; |
| 9 | 9 |
| 10 option optimize_for = LITE_RUNTIME; | 10 option optimize_for = LITE_RUNTIME; |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 435 // The user's group within the field trial, as a 32-bit identifier. | 435 // The user's group within the field trial, as a 32-bit identifier. |
| 436 // Currently, the identifier is a hash of the group's name. | 436 // Currently, the identifier is a hash of the group's name. |
| 437 optional fixed32 group_id = 2; | 437 optional fixed32 group_id = 2; |
| 438 } | 438 } |
| 439 repeated FieldTrial field_trial = 9; | 439 repeated FieldTrial field_trial = 9; |
| 440 | 440 |
| 441 // Number of users currently signed into a multiprofile session. | 441 // Number of users currently signed into a multiprofile session. |
| 442 // A zero value indicates that the user count changed while the log is open. | 442 // A zero value indicates that the user count changed while the log is open. |
| 443 // Logged only on ChromeOS. | 443 // Logged only on ChromeOS. |
| 444 optional uint32 multi_profile_user_count = 17; | 444 optional uint32 multi_profile_user_count = 17; |
| 445 | |
|
Steven Holte
2013/10/28 21:02:44
This probably should move somewhere else and be a
Ilya Sherman
2013/10/29 00:32:31
If this is meant to be a general utility for parti
| |
| 446 optional string bloom_filter_bits = 18; | |
| 445 } | 447 } |
| OLD | NEW |