| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
| 8 | 8 |
| 9 package browser_watcher; | 9 package browser_watcher; |
| 10 | 10 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 // The identifier of the process. | 143 // The identifier of the process. |
| 144 optional int64 process_id = 3; | 144 optional int64 process_id = 3; |
| 145 | 145 |
| 146 // Note: likely only a subset of modules of interest (e.g. Chromium's own | 146 // Note: likely only a subset of modules of interest (e.g. Chromium's own |
| 147 // modules). | 147 // modules). |
| 148 repeated CodeModule modules = 1; | 148 repeated CodeModule modules = 1; |
| 149 repeated ThreadState threads = 2; | 149 repeated ThreadState threads = 2; |
| 150 // TODO(manzagop): add experiment state. | 150 // TODO(manzagop): add experiment state. |
| 151 } | 151 } |
| 152 | 152 |
| 153 // Description of a field trial or experiment that the user is currently |
| 154 // enrolled in. This message is an analogue of the UMA proto in |
| 155 // components/metrics/proto/system_profile.proto. For details about generating |
| 156 // the identifiers from the field trial and group names, see |
| 157 // variations::MakeActiveGroupId(). |
| 158 // Next id: 3 |
| 159 message FieldTrial { |
| 160 // A 32-bit identifier for the name of the field trial. |
| 161 optional fixed32 name_id = 1; |
| 162 |
| 163 // A 32-bit identifier for the user's group within the field trial. |
| 164 optional fixed32 group_id = 2; |
| 165 } |
| 166 |
| 153 // A stability report contains information pertaining to the execution of a | 167 // A stability report contains information pertaining to the execution of a |
| 154 // single logical instance of a "chrome browser". It is comprised of information | 168 // single logical instance of a "chrome browser". It is comprised of information |
| 155 // about the system state and about the chrome browser's processes. | 169 // about the system state and about the chrome browser's processes. |
| 156 // Next id: 5 | 170 // Next id: 6 |
| 157 message StabilityReport { | 171 message StabilityReport { |
| 158 optional SystemState system_state = 1; | 172 optional SystemState system_state = 1; |
| 159 // TODO(manzagop): revisit whether a single repeated field should contain all | 173 // TODO(manzagop): revisit whether a single repeated field should contain all |
| 160 // processes, or whether it's preferable to have separate fields per type. | 174 // processes, or whether it's preferable to have separate fields per type. |
| 161 // TODO(manzagop): add information about the type of process, pid, process | 175 // TODO(manzagop): add information about the type of process, pid, process |
| 162 // times (e.g. start time), hierarchical relationships (e.g. parent pid), | 176 // times (e.g. start time), hierarchical relationships (e.g. parent pid), |
| 163 // command line, etc. | 177 // command line, etc. |
| 164 repeated ProcessState process_states = 2; | 178 repeated ProcessState process_states = 2; |
| 165 // TODO(manzagop): if/when reports contain multiple processes, attribute and | 179 // TODO(manzagop): if/when reports contain multiple processes, attribute and |
| 166 // relocate these to their process (and perhaps thread). | 180 // relocate these to their process (and perhaps thread). |
| 167 repeated string log_messages = 3; | 181 repeated string log_messages = 3; |
| 168 map<string, TypedValue> global_data = 4; | 182 map<string, TypedValue> global_data = 4; |
| 183 |
| 184 // The field trials the user is currently enrolled in. |
| 185 repeated FieldTrial field_trials = 5; |
| 169 } | 186 } |
| OLD | NEW |