Re-land: C++ readability review
[chromium-blink-merge.git] / components / metrics / proto / system_profile.proto
blob4676b7aa1dfb85f2545dc08932821c2258972cfe
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // Stores information about the user's brower and system configuration.
6 // The system configuration fields are recorded once per client session.
8 syntax = "proto2";
10 option optimize_for = LITE_RUNTIME;
12 package metrics;
14 // Next tag: 21
15 message SystemProfileProto {
16   // The time when the client was compiled/linked, in seconds since the epoch.
17   optional int64 build_timestamp = 1;
19   // A version number string for the application.
20   // Most commonly this is the browser version number found in a user agent
21   // string, and is typically a 4-tuple of numbers separated by periods.  In
22   // cases where the user agent version might be ambiguous (example: Linux 64-
23   // bit build, rather than 32-bit build, or a Windows version used in some
24   // special context, such as ChromeFrame running in IE), then this may include
25   // some additional postfix to provide clarification not available in the UA
26   // string.
27   //
28   // An example of a browser version 4-tuple is "5.0.322.0".  Currently used
29   // postfixes are:
30   //
31   //   "-64": a 64-bit build
32   //   "-F": Chrome is running under control of ChromeFrame
33   //   "-devel": this is not an official build of Chrome
34   //
35   // A full version number string could look similar to:
36   // "5.0.322.0-F-devel".
37   //
38   // This value, when available, is more trustworthy than the UA string
39   // associated with the request; and including the postfix, may be more
40   // specific.
41   optional string app_version = 2;
43   // The brand code or distribution tag assigned to a partner, if available.
44   // Brand codes are only available on Windows.  Not every Windows install
45   // though will have a brand code.
46   optional string brand_code = 12;
48   // The possible channels for an installation, from least to most stable.
49   enum Channel {
50     CHANNEL_UNKNOWN = 0;  // Unknown channel -- perhaps an unofficial build?
51     CHANNEL_CANARY = 1;
52     CHANNEL_DEV = 2;
53     CHANNEL_BETA = 3;
54     CHANNEL_STABLE = 4;
55   }
56   optional Channel channel = 10;
58   // True if Chrome build is ASan-instrumented.
59   optional bool is_asan_build = 20 [default = false];
61   // The date the user enabled UMA, in seconds since the epoch.
62   // If the user has toggled the UMA enabled state multiple times, this will
63   // be the most recent date on which UMA was enabled.
64   // For privacy, this is rounded to the nearest hour.
65   optional int64 uma_enabled_date = 3;
67   // The time when the client was installed, in seconds since the epoch.
68   // For privacy, this is rounded to the nearest hour.
69   optional int64 install_date = 16;
71   // The user's selected application locale, i.e. the user interface language.
72   // The locale includes a language code and, possibly, also a country code,
73   // e.g. "en-US".
74   optional string application_locale = 4;
76   // Information on the user's operating system.
77   message OS {
78     // The user's operating system.
79     optional string name = 1;
81     // The version of the OS.  The meaning of this field is OS-dependent.
82     optional string version = 2;
84     // The fingerprint of the build.  This field is used only on Android.
85     optional string fingerprint = 3;
87     // Whether the version of iOS appears to be "jailbroken". This field is
88     // used only on iOS. Chrome for iOS detects whether device contains a
89     // DynamicLibraries/ directory. It's a necessary but insufficient indicator
90     // of whether the operating system has been jailbroken.
91     optional bool is_jailbroken = 4;
92   }
93   optional OS os = 5;
95   // Next tag for Hardware: 18
96   // Information on the user's hardware.
97   message Hardware {
98     // The CPU architecture (x86, PowerPC, x86_64, ...)
99     optional string cpu_architecture = 1;
101     // The amount of RAM present on the system, in megabytes.
102     optional int64 system_ram_mb = 2;
104     // The base memory address that chrome.dll was loaded at.
105     // (Logged only on Windows.)
106     optional int64 dll_base = 3;
108     // The Chrome OS device hardware class ID is a unique string associated with
109     // each Chrome OS device product revision generally assigned at hardware
110     // qualification time.  The hardware class effectively identifies the
111     // configured system components such as CPU, WiFi adapter, etc.
112     //
113     // An example of such a hardware class is "IEC MARIO PONY 6101".  An
114     // internal database associates this hardware class with the qualified
115     // device specifications including OEM information, schematics, hardware
116     // qualification reports, test device tags, etc.
117     optional string hardware_class = 4;
119     // The number of physical screens.
120     optional int32 screen_count = 5;
122     // The screen dimensions of the primary screen, in pixels.
123     optional int32 primary_screen_width = 6;
124     optional int32 primary_screen_height = 7;
126     // The device scale factor of the primary screen.
127     optional float primary_screen_scale_factor = 12;
129     // Max DPI for any attached screen. (Windows only)
130     optional float max_dpi_x = 9;
131     optional float max_dpi_y = 10;
133     // Information on the CPU obtained by CPUID.
134     message CPU {
135       // A 12 character string naming the vendor, e.g. "GeniuneIntel".
136       optional string vendor_name = 1;
138       // The signature reported by CPUID (from EAX).
139       optional uint32 signature = 2;
141       // Number of logical processors/cores on the current machine.
142       optional uint32 num_cores = 3;
143     }
144     optional CPU cpu = 13;
146     // Information on the GPU
147     message Graphics {
148       // The GPU manufacturer's vendor id.
149       optional uint32 vendor_id = 1;
151       // The GPU manufacturer's device id for the chip set.
152       optional uint32 device_id = 2;
154       // The driver version on the GPU.
155       optional string driver_version = 3;
157       // The driver date on the GPU.
158       optional string driver_date = 4;
160       // The GL_VENDOR string. An example of a gl_vendor string is
161       // "Imagination Technologies". "" if we are not using OpenGL.
162       optional string gl_vendor = 6;
164       // The GL_RENDERER string. An example of a gl_renderer string is
165       // "PowerVR SGX 540". "" if we are not using OpenGL.
166       optional string gl_renderer = 7;
167     }
168     optional Graphics gpu = 8;
170     // Information about Bluetooth devices paired with the system.
171     message Bluetooth {
172       // Whether Bluetooth is present on this system.
173       optional bool is_present = 1;
175       // Whether Bluetooth is enabled on this system.
176       optional bool is_enabled = 2;
178       // Describes a paired device.
179       message PairedDevice {
180         // Assigned class of the device. This is a bitfield according to the
181         // Bluetooth specification available at the following URL:
182         // https://www.bluetooth.org/en-us/specification/assigned-numbers-overview/baseband
183         optional uint32 bluetooth_class = 1;
185         // Decoded device type.
186         enum Type {
187           DEVICE_UNKNOWN = 0;
188           DEVICE_COMPUTER = 1;
189           DEVICE_PHONE = 2;
190           DEVICE_MODEM = 3;
191           DEVICE_AUDIO = 4;
192           DEVICE_CAR_AUDIO = 5;
193           DEVICE_VIDEO = 6;
194           DEVICE_PERIPHERAL = 7;
195           DEVICE_JOYSTICK = 8;
196           DEVICE_GAMEPAD = 9;
197           DEVICE_KEYBOARD = 10;
198           DEVICE_MOUSE = 11;
199           DEVICE_TABLET = 12;
200           DEVICE_KEYBOARD_MOUSE_COMBO = 13;
201         }
202         optional Type type = 2;
204         // Vendor prefix of the Bluetooth address, these are OUI registered by
205         // the IEEE and are encoded with the first byte in bits 16-23, the
206         // second byte in bits 8-15 and the third byte in bits 0-7.
207         //
208         // ie. Google's OUI (00:1A:11) is encoded as 0x00001A11
209         optional uint32 vendor_prefix = 4;
211         // The Vendor ID of a device, returned in vendor_id below, can be
212         // either allocated by the Bluetooth SIG or USB IF, providing two
213         // completely overlapping namespaces for identifiers.
214         //
215         // This field should be read along with vendor_id to correctly
216         // identify the vendor. For example Google is identified by either
217         // vendor_id_source = VENDOR_ID_BLUETOOTH, vendor_id = 0x00E0 or
218         // vendor_id_source = VENDOR_ID_USB, vendor_id = 0x18D1.
219         //
220         // If the device does not support the Device ID specification the
221         // unknown value will be set.
222         enum VendorIDSource {
223           VENDOR_ID_UNKNOWN = 0;
224           VENDOR_ID_BLUETOOTH = 1;
225           VENDOR_ID_USB = 2;
226         }
227         optional VendorIDSource vendor_id_source = 8;
229         // Vendor ID of the device, where available.
230         optional uint32 vendor_id = 5;
232         // Product ID of the device, where available.
233         optional uint32 product_id = 6;
235         // Device ID of the device, generally the release or version number in
236         // BCD format, where available.
237         optional uint32 device_id = 7;
238       }
239       repeated PairedDevice paired_device = 3;
240     }
241     optional Bluetooth bluetooth = 11;
243     // Whether the internal display produces touch events. Omitted if unknown.
244     // Logged on ChromeOS only.
245     optional bool internal_display_supports_touch = 14;
247     // Vendor ids and product ids of external touchscreens.
248     message TouchScreen {
249       // Touch screen vendor id.
250       optional uint32 vendor_id = 1;
251       // Touch screen product id.
252       optional uint32 product_id = 2;
253     }
254     // Lists vendor and product ids of external touchscreens.
255     // Logged on ChromeOS only.
256     repeated TouchScreen external_touchscreen = 15;
258     // Drive messages are currently logged on Windows 7+, iOS, and Android.
259     message Drive {
260       // Whether this drive incurs a time penalty when randomly accessed. This
261       // should be true for spinning disks but false for SSDs or other
262       // flash-based drives.
263       optional bool has_seek_penalty = 1;
264     }
265     // The drive that the application executable was loaded from.
266     optional Drive app_drive = 16;
267     // The drive that the current user data directory was loaded from.
268     optional Drive user_data_drive = 17;
269   }
270   optional Hardware hardware = 6;
272   // Information about the network connection.
273   message Network {
274     // Set to true if connection_type changed during the lifetime of the log.
275     optional bool connection_type_is_ambiguous = 1;
277     // See net::NetworkChangeNotifier::ConnectionType.
278     enum ConnectionType {
279       CONNECTION_UNKNOWN = 0;
280       CONNECTION_ETHERNET = 1;
281       CONNECTION_WIFI = 2;
282       CONNECTION_2G = 3;
283       CONNECTION_3G = 4;
284       CONNECTION_4G = 5;
285       CONNECTION_BLUETOOTH = 6;
286     }
287     // The connection type according to NetworkChangeNotifier.
288     optional ConnectionType connection_type = 2;
290     // Set to true if wifi_phy_layer_protocol changed during the lifetime of the log.
291     optional bool wifi_phy_layer_protocol_is_ambiguous = 3;
293     // See net::WifiPHYLayerProtocol.
294     enum WifiPHYLayerProtocol {
295       WIFI_PHY_LAYER_PROTOCOL_NONE = 0;
296       WIFI_PHY_LAYER_PROTOCOL_ANCIENT = 1;
297       WIFI_PHY_LAYER_PROTOCOL_A = 2;
298       WIFI_PHY_LAYER_PROTOCOL_B = 3;
299       WIFI_PHY_LAYER_PROTOCOL_G = 4;
300       WIFI_PHY_LAYER_PROTOCOL_N = 5;
301       WIFI_PHY_LAYER_PROTOCOL_UNKNOWN = 6;
302     }
303     // The physical layer mode of the associated wifi access point, if any.
304     optional WifiPHYLayerProtocol wifi_phy_layer_protocol = 4;
306     // Describe wifi access point information.
307     message WifiAccessPoint {
308       // Vendor prefix of the access point's BSSID, these are OUIs
309       // (Organizationally Unique Identifiers) registered by
310       // the IEEE and are encoded with the first byte in bits 16-23, the
311       // second byte in bits 8-15 and the third byte in bits 0-7.
312       optional uint32 vendor_prefix = 1;
314       // Access point seurity mode definitions.
315       enum SecurityMode {
316         SECURITY_UNKNOWN = 0;
317         SECURITY_WPA = 1;
318         SECURITY_WEP = 2;
319         SECURITY_RSN = 3;
320         SECURITY_802_1X = 4;
321         SECURITY_PSK = 5;
322         SECURITY_NONE = 6;
323       }
324       // The security mode of the access point.
325       optional SecurityMode security_mode = 2;
327       // Vendor specific information.
328       message VendorInformation {
329         // The model number, for example "0".
330         optional string model_number = 1;
332         // The model name (sometimes the same as the model_number),
333         // for example "WZR-HP-AG300H".
334         optional string model_name = 2;
336         // The device name (sometimes the same as the model_number),
337         // for example "Dummynet"
338         optional string device_name = 3;
340         // The list of vendor-specific OUIs (Organziationally Unqiue
341         // Identifiers). These are provided by the vendor through WPS
342         // (Wireless Provisioning Service) information elements, which
343         // identifies the content of the element.
344         repeated uint32 element_identifier = 4;
345       }
346       // The wireless access point vendor information.
347       optional VendorInformation vendor_info = 3;
348     }
349     // Information of the wireless AP that device is connected to.
350     optional WifiAccessPoint access_point_info = 5;
351   }
352   optional Network network = 13;
354   // Information on the Google Update install that is managing this client.
355   message GoogleUpdate {
356     // Whether the Google Update install is system-level or user-level.
357     optional bool is_system_install = 1;
359     // The date at which Google Update last started performing an automatic
360     // update check, in seconds since the Unix epoch.
361     optional int64 last_automatic_start_timestamp = 2;
363     // The date at which Google Update last successfully sent an update check
364     // and recieved an intact response from the server, in seconds since the
365     // Unix epoch. (The updates don't need to be successfully installed.)
366     optional int64 last_update_check_timestamp = 3;
368     // Describes a product being managed by Google Update. (This can also
369     // describe Google Update itself.)
370     message ProductInfo {
371       // The current version of the product that is installed.
372       optional string version = 1;
374       // The date at which Google Update successfully updated this product,
375       // stored in seconds since the Unix epoch.  This is updated when an update
376       // is successfully applied, or if the server reports that no update
377       // is available.
378       optional int64 last_update_success_timestamp = 2;
380       // The result reported by the product updater on its last run.
381       enum InstallResult {
382         INSTALL_RESULT_SUCCESS = 0;
383         INSTALL_RESULT_FAILED_CUSTOM_ERROR = 1;
384         INSTALL_RESULT_FAILED_MSI_ERROR = 2;
385         INSTALL_RESULT_FAILED_SYSTEM_ERROR = 3;
386         INSTALL_RESULT_EXIT_CODE = 4;
387       }
388       optional InstallResult last_result = 3;
390       // The error code reported by the product updater on its last run.  This
391       // will typically be a error code specific to the product installer.
392       optional int32 last_error = 4;
394       // The extra error code reported by the product updater on its last run.
395       // This will typically be a Win32 error code.
396       optional int32 last_extra_error = 5;
397     }
398     optional ProductInfo google_update_status = 4;
399     optional ProductInfo client_status = 5;
400   }
401   optional GoogleUpdate google_update = 11;
403   // Information on all installed plugins.
404   message Plugin {
405     // The plugin's self-reported name and filename (without path).
406     optional string name = 1;
407     optional string filename = 2;
409     // The plugin's version.
410     optional string version = 3;
412     // True if the plugin is disabled.
413     // If a client has multiple local Chrome user accounts, this is logged based
414     // on the first user account launched during the current session.
415     optional bool is_disabled = 4;
417     // True if the plugin is PPAPI.
418     optional bool is_pepper = 5;
419   }
420   repeated Plugin plugin = 7;
422   // Figures that can be used to generate application stability metrics.
423   // All values are counts of events since the last time that these
424   // values were reported.
425   // Next tag: 24
426   message Stability {
427     // Total amount of time that the program was running, in seconds,
428     // since the last time a log was recorded, as measured using a client-side
429     // clock implemented via TimeTicks, which guarantees that it is monotonic
430     // and does not jump if the user changes his/her clock.  The TimeTicks
431     // implementation also makes the clock not count time the computer is
432     // suspended.
433     optional int64 incremental_uptime_sec = 1;
435     // Total amount of time that the program was running, in seconds,
436     // since startup, as measured using a client-side clock implemented
437     // via TimeTicks, which guarantees that it is monotonic and does not
438     // jump if the user changes his/her clock.  The TimeTicks implementation
439     // also makes the clock not count time the computer is suspended.
440     // This field was added for M-35.
441     optional int64 uptime_sec = 23;
443     // Page loads along with renderer crashes and hangs, since page load count
444     // roughly corresponds to usage.
445     optional int32 page_load_count = 2;
446     optional int32 renderer_crash_count = 3;
447     optional int32 renderer_hang_count = 4;
449     // Number of renderer crashes that were for extensions. These crashes are
450     // not counted in renderer_crash_count.
451     optional int32 extension_renderer_crash_count = 5;
453     // Number of non-renderer child process crashes.
454     optional int32 child_process_crash_count = 6;
456     // Number of times the browser has crashed while logged in as the "other
457     // user" (guest) account.
458     // Logged on ChromeOS only.
459     optional int32 other_user_crash_count = 7;
461     // Number of times the kernel has crashed.
462     // Logged on ChromeOS only.
463     optional int32 kernel_crash_count = 8;
465     // Number of times the system has shut down uncleanly.
466     // Logged on ChromeOS only.
467     optional int32 unclean_system_shutdown_count = 9;
469     //
470     // All the remaining fields in the Stability are recorded at most once per
471     // client session.
472     //
474     // The number of times the program was launched.
475     // This will typically be equal to 1.  However, it is possible that Chrome
476     // was unable to upload stability metrics for previous launches (e.g. due to
477     // crashing early during startup), and hence this value might be greater
478     // than 1.
479     optional int32 launch_count = 15;
480     // The number of times that it didn't exit cleanly (which we assume to be
481     // mostly crashes).
482     optional int32 crash_count = 16;
484     // The number of times the program began, but did not complete, the shutdown
485     // process.  (For example, this may occur when Windows is shutting down, and
486     // it only gives the process a few seconds to clean up.)
487     optional int32 incomplete_shutdown_count = 17;
489     // The number of times the program was able register with breakpad crash
490     // services.
491     optional int32 breakpad_registration_success_count = 18;
493     // The number of times the program failed to register with breakpad crash
494     // services.  If crash registration fails then when the program crashes no
495     // crash report will be generated.
496     optional int32 breakpad_registration_failure_count = 19;
498     // The number of times the program has run under a debugger.  This should
499     // be an exceptional condition.  Running under a debugger prevents crash
500     // dumps from being generated.
501     optional int32 debugger_present_count = 20;
503     // The number of times the program has run without a debugger attached.
504     // This should be most common scenario and should be very close to
505     // |launch_count|.
506     optional int32 debugger_not_present_count = 21;
508     // Stability information for all installed plugins.
509     message PluginStability {
510       // The relevant plugin's information (name, etc.)
511       optional Plugin plugin = 1;
513       // The number of times this plugin's process was launched.
514       optional int32 launch_count = 2;
516       // The number of times this plugin was instantiated on a web page.
517       // This will be >= |launch_count|.
518       // (A page load with multiple sections drawn by this plugin will
519       // increase this count multiple times.)
520       optional int32 instance_count = 3;
522       // The number of times this plugin process crashed.
523       // This value will be <= |launch_count|.
524       optional int32 crash_count = 4;
526       // The number of times this plugin could not be loaded.
527       optional int32 loading_error_count = 5;
528     }
529     repeated PluginStability plugin_stability = 22;
530   }
531   optional Stability stability = 8;
533   // Description of a field trial or experiment that the user is currently
534   // enrolled in.
535   // All metrics reported in this upload can potentially be influenced by the
536   // field trial.
537   message FieldTrial {
538     // The name of the field trial, as a 32-bit identifier.
539     // Currently, the identifier is a hash of the field trial's name.
540     optional fixed32 name_id = 1;
542     // The user's group within the field trial, as a 32-bit identifier.
543     // Currently, the identifier is a hash of the group's name.
544     optional fixed32 group_id = 2;
545   }
546   repeated FieldTrial field_trial = 9;
548   // Information about the A/V output device(s) (typically just a TV).
549   // However, a configuration may have one or more intermediate A/V devices
550   // between the source device and the TV (e.g. an A/V receiver, video
551   // processor, etc.).
552   message ExternalAudioVideoDevice {
553     // The manufacturer name (possibly encoded as a 3-letter code, e.g. "YMH"
554     // for Yamaha).
555     optional string manufacturer_name = 1;
557     // The model name (e.g. "RX-V1900"). Some devices may report generic names
558     // like "receiver" or use the full manufacturer name (e.g "PHILIPS").
559     optional string model_name = 2;
561     // The product code (e.g. "0218").
562     optional string product_code = 3;
564     // The device types. A single device can have multiple types (e.g. a set-top
565     // box could be both a tuner and a player).  The same type may even be
566     // repeated (e.g a device that reports two tuners).
567     enum AVDeviceType {
568       AV_DEVICE_TYPE_UNKNOWN = 0;
569       AV_DEVICE_TYPE_TV = 1;
570       AV_DEVICE_TYPE_RECORDER = 2;
571       AV_DEVICE_TYPE_TUNER = 3;
572       AV_DEVICE_TYPE_PLAYER = 4;
573       AV_DEVICE_TYPE_AUDIO_SYSTEM = 5;
574     }
575     repeated AVDeviceType av_device_type = 4;
577     // The year of manufacture.
578     optional int32 manufacture_year = 5;
580     // The week of manufacture.
581     // Note: per the Wikipedia EDID article, numbering for this field may not
582     // be consistent between manufacturers.
583     optional int32 manufacture_week = 6;
585     // Max horizontal resolution in pixels.
586     optional int32 horizontal_resolution = 7;
588     // Max vertical resolution in pixels.
589     optional int32 vertical_resolution = 8;
591     // Audio capabilities of the device.
592     // Ref: http://en.wikipedia.org/wiki/Extended_display_identification_data
593     message AudioDescription {
594       // Audio format
595       enum AudioFormat {
596         AUDIO_FORMAT_UNKNOWN = 0;
597         AUDIO_FORMAT_LPCM = 1;
598         AUDIO_FORMAT_AC_3 = 2;
599         AUDIO_FORMAT_MPEG1 = 3;
600         AUDIO_FORMAT_MP3 = 4;
601         AUDIO_FORMAT_MPEG2 = 5;
602         AUDIO_FORMAT_AAC = 6;
603         AUDIO_FORMAT_DTS = 7;
604         AUDIO_FORMAT_ATRAC = 8;
605         AUDIO_FORMAT_ONE_BIT = 9;
606         AUDIO_FORMAT_DD_PLUS = 10;
607         AUDIO_FORMAT_DTS_HD = 11;
608         AUDIO_FORMAT_MLP_DOLBY_TRUEHD = 12;
609         AUDIO_FORMAT_DST_AUDIO = 13;
610         AUDIO_FORMAT_MICROSOFT_WMA_PRO = 14;
611       }
612       optional AudioFormat audio_format = 1;
614       // Number of channels (e.g. 1, 2, 8, etc.).
615       optional int32 num_channels = 2;
617       // Supported sample frequencies in Hz (e.g. 32000, 44100, etc.).
618       // Multiple frequencies may be specified.
619       repeated int32 sample_frequency_hz = 3;
621       // Maximum bit rate in bits/s.
622       optional int32 max_bit_rate_per_second = 4;
624       // Bit depth (e.g. 16, 20, 24, etc.).
625       optional int32 bit_depth = 5;
626     }
627     repeated AudioDescription audio_description = 9;
629     // The position in AV setup.
630     // A value of 0 means this device is the TV.
631     // A value of 1 means this device is directly connected to one of
632     // the TV's inputs.
633     // Values > 1 indicate there are 1 or more devices between this device
634     // and the TV.
635     optional int32 position_in_setup = 10;
637     // Whether this device is in the path to the TV.
638     optional bool is_in_path_to_tv = 11;
640     // The CEC version the device supports.
641     // CEC stands for Consumer Electronics Control, a part of the HDMI
642     // specification.  Not all HDMI devices support CEC.
643     // Only devices that support CEC will report a value here.
644     optional int32 cec_version = 12;
646     // This message reports CEC commands seen by a device.
647     // After each log is sent, this information is cleared and gathered again.
648     // By collecting CEC status information by opcode we can determine
649     // which CEC features can be supported.
650     message CECCommand {
651       // The CEC command opcode.  CEC supports up to 256 opcodes.
652       // We add only one CECCommand message per unique opcode.  Only opcodes
653       // seen by the device will be reported. The remainder of the message
654       // accumulates status for this opcode (and device).
655       optional int32 opcode = 1;
657       // The total number of commands received from the external device.
658       optional int32 num_received_direct = 2;
660       // The number of commands received from the external device as part of a
661       // broadcast message.
662       optional int32 num_received_broadcast = 3;
664       // The total number of commands sent to the external device.
665       optional int32 num_sent_direct = 4;
667       // The number of commands sent to the external device as part of a
668       // broadcast message.
669       optional int32 num_sent_broadcast = 5;
671       // The number of aborted commands for unknown reasons.
672       optional int32 num_aborted_unknown_reason = 6;
674       // The number of aborted commands because of an unrecognized opcode.
675       optional int32 num_aborted_unrecognized = 7;
676     }
677     repeated CECCommand cec_command = 13;
678   }
679   repeated ExternalAudioVideoDevice external_audio_video_device = 14;
681   // Information about the current wireless access point. Collected directly
682   // from the wireless access point via standard apis if the device is
683   // connected to the Internet wirelessly. Introduced for Chrome on TV devices
684   // but also can be collected by ChromeOS, Android or other clients.
685   message ExternalAccessPoint {
686     // The manufacturer name, for example "ASUSTeK Computer Inc.".
687     optional string manufacturer = 1;
689     // The model name, for example "Wi-Fi Protected Setup Router".
690     optional string model_name = 2;
692     // The model number, for example "RT-N16".
693     optional string model_number = 3;
695     // The device name (sometime same as model_number), for example "RT-N16".
696     optional string device_name = 4;
697   }
698   optional ExternalAccessPoint external_access_point = 15;
700   // Number of users currently signed into a multiprofile session.
701   // A zero value indicates that the user count changed while the log is open.
702   // Logged only on ChromeOS.
703   optional uint32 multi_profile_user_count = 17;
705   // Information about extensions that are installed, masked to provide better
706   // privacy.  Only extensions from a single profile are reported; this will
707   // generally be the profile used when the browser is started.  The profile
708   // reported on will remain consistent at least until the browser is
709   // relaunched (or the profile is deleted by the user).
710   //
711   // Each client first picks a value for client_key derived from its UMA
712   // client_id:
713   //   client_key = client_id % 4096
714   // Then, each installed extension is mapped into a hash bucket according to
715   //   bucket = CityHash64(StringPrintf("%d:%s",
716   //                                    client_key, extension_id)) % 1024
717   // The client reports the set of hash buckets occupied by all installed
718   // extensions.  If multiple extensions map to the same bucket, that bucket is
719   // still only reported once.
720   repeated int32 occupied_extension_bucket = 18;
722   // The state of loaded extensions for this system. The system can have either
723   // no applicable extensions, extensions only from the webstore and verified by
724   // the webstore, extensions only from the webstore but not verified, or
725   // extensions not from the store. If there is a single off-store extension,
726   // then HAS_OFFSTORE is reported. This should be kept in sync with the
727   // corresponding enum in chrome/browser/metrics/extensions_metrics_provider.cc
728   enum ExtensionsState {
729     NO_EXTENSIONS = 0;
730     NO_OFFSTORE_VERIFIED = 1;
731     NO_OFFSTORE_UNVERIFIED = 2;
732     HAS_OFFSTORE = 3;
733   }
734   optional ExtensionsState offstore_extensions_state = 19;