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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 optional string name = 1; | 312 optional string name = 1; |
313 optional string filename = 2; | 313 optional string filename = 2; |
314 | 314 |
315 // The plugin's version. | 315 // The plugin's version. |
316 optional string version = 3; | 316 optional string version = 3; |
317 | 317 |
318 // True if the plugin is disabled. | 318 // True if the plugin is disabled. |
319 // If a client has multiple local Chrome user accounts, this is logged based | 319 // If a client has multiple local Chrome user accounts, this is logged based |
320 // on the first user account launched during the current session. | 320 // on the first user account launched during the current session. |
321 optional bool is_disabled = 4; | 321 optional bool is_disabled = 4; |
| 322 |
| 323 // True if the plugin is PPAPI. |
| 324 optional bool is_pepper = 5; |
322 } | 325 } |
323 repeated Plugin plugin = 7; | 326 repeated Plugin plugin = 7; |
324 | 327 |
325 // Figures that can be used to generate application stability metrics. | 328 // Figures that can be used to generate application stability metrics. |
326 // All values are counts of events since the last time that these | 329 // All values are counts of events since the last time that these |
327 // values were reported. | 330 // values were reported. |
328 message Stability { | 331 message Stability { |
329 // Total amount of time that the program was running, in seconds. | 332 // Total amount of time that the program was running, in seconds. |
330 optional int64 uptime_sec = 1; | 333 optional int64 uptime_sec = 1; |
331 | 334 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 // The name of the field trial, as a 32-bit identifier. | 431 // The name of the field trial, as a 32-bit identifier. |
429 // Currently, the identifier is a hash of the field trial's name. | 432 // Currently, the identifier is a hash of the field trial's name. |
430 optional fixed32 name_id = 1; | 433 optional fixed32 name_id = 1; |
431 | 434 |
432 // 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. |
433 // Currently, the identifier is a hash of the group's name. | 436 // Currently, the identifier is a hash of the group's name. |
434 optional fixed32 group_id = 2; | 437 optional fixed32 group_id = 2; |
435 } | 438 } |
436 repeated FieldTrial field_trial = 9; | 439 repeated FieldTrial field_trial = 9; |
437 } | 440 } |
OLD | NEW |