ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / components / metrics / proto / system_profile.proto
blobc73d8a95e8086a6bf9935297078e354ed3a48dd0
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: 16
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;
140     }
141     optional CPU cpu = 13;
143     // Information on the GPU
144     message Graphics {
145       // The GPU manufacturer's vendor id.
146       optional uint32 vendor_id = 1;
148       // The GPU manufacturer's device id for the chip set.
149       optional uint32 device_id = 2;
151       // The driver version on the GPU.
152       optional string driver_version = 3;
154       // The driver date on the GPU.
155       optional string driver_date = 4;
157       // The GPU performance statistics.
158       // See http://src.chromium.org/viewvc/chrome/trunk/src/content/public/common/gpu_performance_stats.h?view=markup
159       // for details.  Currently logged only on Windows.
160       message PerformanceStatistics {
161         optional float graphics_score = 1;
162         optional float gaming_score = 2;
163         optional float overall_score = 3;
164       }
165       optional PerformanceStatistics performance_statistics = 5;
167       // The GL_VENDOR string. An example of a gl_vendor string is
168       // "Imagination Technologies". "" if we are not using OpenGL.
169       optional string gl_vendor = 6;
171       // The GL_RENDERER string. An example of a gl_renderer string is
172       // "PowerVR SGX 540". "" if we are not using OpenGL.
173       optional string gl_renderer = 7;
174     }
175     optional Graphics gpu = 8;
177     // Information about Bluetooth devices paired with the system.
178     message Bluetooth {
179       // Whether Bluetooth is present on this system.
180       optional bool is_present = 1;
182       // Whether Bluetooth is enabled on this system.
183       optional bool is_enabled = 2;
185       // Describes a paired device.
186       message PairedDevice {
187         // Assigned class of the device. This is a bitfield according to the
188         // Bluetooth specification available at the following URL:
189         // https://www.bluetooth.org/en-us/specification/assigned-numbers-overview/baseband
190         optional uint32 bluetooth_class = 1;
192         // Decoded device type.
193         enum Type {
194           DEVICE_UNKNOWN = 0;
195           DEVICE_COMPUTER = 1;
196           DEVICE_PHONE = 2;
197           DEVICE_MODEM = 3;
198           DEVICE_AUDIO = 4;
199           DEVICE_CAR_AUDIO = 5;
200           DEVICE_VIDEO = 6;
201           DEVICE_PERIPHERAL = 7;
202           DEVICE_JOYSTICK = 8;
203           DEVICE_GAMEPAD = 9;
204           DEVICE_KEYBOARD = 10;
205           DEVICE_MOUSE = 11;
206           DEVICE_TABLET = 12;
207           DEVICE_KEYBOARD_MOUSE_COMBO = 13;
208         }
209         optional Type type = 2;
211         // Vendor prefix of the Bluetooth address, these are OUI registered by
212         // the IEEE and are encoded with the first byte in bits 16-23, the
213         // second byte in bits 8-15 and the third byte in bits 0-7.
214         //
215         // ie. Google's OUI (00:1A:11) is encoded as 0x00001A11
216         optional uint32 vendor_prefix = 4;
218         // The Vendor ID of a device, returned in vendor_id below, can be
219         // either allocated by the Bluetooth SIG or USB IF, providing two
220         // completely overlapping namespaces for identifiers.
221         //
222         // This field should be read along with vendor_id to correctly
223         // identify the vendor. For example Google is identified by either
224         // vendor_id_source = VENDOR_ID_BLUETOOTH, vendor_id = 0x00E0 or
225         // vendor_id_source = VENDOR_ID_USB, vendor_id = 0x18D1.
226         //
227         // If the device does not support the Device ID specification the
228         // unknown value will be set.
229         enum VendorIDSource {
230           VENDOR_ID_UNKNOWN = 0;
231           VENDOR_ID_BLUETOOTH = 1;
232           VENDOR_ID_USB = 2;
233         }
234         optional VendorIDSource vendor_id_source = 8;
236         // Vendor ID of the device, where available.
237         optional uint32 vendor_id = 5;
239         // Product ID of the device, where available.
240         optional uint32 product_id = 6;
242         // Device ID of the device, generally the release or version number in
243         // BCD format, where available.
244         optional uint32 device_id = 7;
245       }
246       repeated PairedDevice paired_device = 3;
247     }
248     optional Bluetooth bluetooth = 11;
250     // Whether the internal display produces touch events. Omitted if unknown.
251     // Logged on ChromeOS only.
252     optional bool internal_display_supports_touch = 14;
254     // Vendor ids and product ids of external touchscreens.
255     message TouchScreen {
256       // Touch screen vendor id.
257       optional uint32 vendor_id = 1;
258       // Touch screen product id.
259       optional uint32 product_id = 2;
260     }
261     // Lists vendor and product ids of external touchscreens.
262     // Logged on ChromeOS only.
263     repeated TouchScreen external_touchscreen = 15;
264   }
265   optional Hardware hardware = 6;
267   // Information about the network connection.
268   message Network {
269     // Set to true if connection_type changed during the lifetime of the log.
270     optional bool connection_type_is_ambiguous = 1;
272     // See net::NetworkChangeNotifier::ConnectionType.
273     enum ConnectionType {
274       CONNECTION_UNKNOWN = 0;
275       CONNECTION_ETHERNET = 1;
276       CONNECTION_WIFI = 2;
277       CONNECTION_2G = 3;
278       CONNECTION_3G = 4;
279       CONNECTION_4G = 5;
280       CONNECTION_BLUETOOTH = 6;
281     }
282     // The connection type according to NetworkChangeNotifier.
283     optional ConnectionType connection_type = 2;
285     // Set to true if wifi_phy_layer_protocol changed during the lifetime of the log.
286     optional bool wifi_phy_layer_protocol_is_ambiguous = 3;
288     // See net::WifiPHYLayerProtocol.
289     enum WifiPHYLayerProtocol {
290       WIFI_PHY_LAYER_PROTOCOL_NONE = 0;
291       WIFI_PHY_LAYER_PROTOCOL_ANCIENT = 1;
292       WIFI_PHY_LAYER_PROTOCOL_A = 2;
293       WIFI_PHY_LAYER_PROTOCOL_B = 3;
294       WIFI_PHY_LAYER_PROTOCOL_G = 4;
295       WIFI_PHY_LAYER_PROTOCOL_N = 5;
296       WIFI_PHY_LAYER_PROTOCOL_UNKNOWN = 6;
297     }
298     // The physical layer mode of the associated wifi access point, if any.
299     optional WifiPHYLayerProtocol wifi_phy_layer_protocol = 4;
301     // Describe wifi access point information.
302     message WifiAccessPoint {
303       // Vendor prefix of the access point's BSSID, these are OUIs
304       // (Organizationally Unique Identifiers) registered by
305       // the IEEE and are encoded with the first byte in bits 16-23, the
306       // second byte in bits 8-15 and the third byte in bits 0-7.
307       optional uint32 vendor_prefix = 1;
309       // Access point seurity mode definitions.
310       enum SecurityMode {
311         SECURITY_UNKNOWN = 0;
312         SECURITY_WPA = 1;
313         SECURITY_WEP = 2;
314         SECURITY_RSN = 3;
315         SECURITY_802_1X = 4;
316         SECURITY_PSK = 5;
317         SECURITY_NONE = 6;
318       }
319       // The security mode of the access point.
320       optional SecurityMode security_mode = 2;
322       // Vendor specific information.
323       message VendorInformation {
324         // The model number, for example "0".
325         optional string model_number = 1;
327         // The model name (sometimes the same as the model_number),
328         // for example "WZR-HP-AG300H".
329         optional string model_name = 2;
331         // The device name (sometimes the same as the model_number),
332         // for example "Dummynet"
333         optional string device_name = 3;
335         // The list of vendor-specific OUIs (Organziationally Unqiue
336         // Identifiers). These are provided by the vendor through WPS
337         // (Wireless Provisioning Service) information elements, which
338         // identifies the content of the element.
339         repeated uint32 element_identifier = 4;
340       }
341       // The wireless access point vendor information.
342       optional VendorInformation vendor_info = 3;
343     }
344     // Information of the wireless AP that device is connected to.
345     optional WifiAccessPoint access_point_info = 5;
346   }
347   optional Network network = 13;
349   // Information on the Google Update install that is managing this client.
350   message GoogleUpdate {
351     // Whether the Google Update install is system-level or user-level.
352     optional bool is_system_install = 1;
354     // The date at which Google Update last started performing an automatic
355     // update check, in seconds since the Unix epoch.
356     optional int64 last_automatic_start_timestamp = 2;
358     // The date at which Google Update last successfully sent an update check
359     // and recieved an intact response from the server, in seconds since the
360     // Unix epoch. (The updates don't need to be successfully installed.)
361     optional int64 last_update_check_timestamp = 3;
363     // Describes a product being managed by Google Update. (This can also
364     // describe Google Update itself.)
365     message ProductInfo {
366       // The current version of the product that is installed.
367       optional string version = 1;
369       // The date at which Google Update successfully updated this product,
370       // stored in seconds since the Unix epoch.  This is updated when an update
371       // is successfully applied, or if the server reports that no update
372       // is available.
373       optional int64 last_update_success_timestamp = 2;
375       // The result reported by the product updater on its last run.
376       enum InstallResult {
377         INSTALL_RESULT_SUCCESS = 0;
378         INSTALL_RESULT_FAILED_CUSTOM_ERROR = 1;
379         INSTALL_RESULT_FAILED_MSI_ERROR = 2;
380         INSTALL_RESULT_FAILED_SYSTEM_ERROR = 3;
381         INSTALL_RESULT_EXIT_CODE = 4;
382       }
383       optional InstallResult last_result = 3;
385       // The error code reported by the product updater on its last run.  This
386       // will typically be a error code specific to the product installer.
387       optional int32 last_error = 4;
389       // The extra error code reported by the product updater on its last run.
390       // This will typically be a Win32 error code.
391       optional int32 last_extra_error = 5;
392     }
393     optional ProductInfo google_update_status = 4;
394     optional ProductInfo client_status = 5;
395   }
396   optional GoogleUpdate google_update = 11;
398   // Information on all installed plugins.
399   message Plugin {
400     // The plugin's self-reported name and filename (without path).
401     optional string name = 1;
402     optional string filename = 2;
404     // The plugin's version.
405     optional string version = 3;
407     // True if the plugin is disabled.
408     // If a client has multiple local Chrome user accounts, this is logged based
409     // on the first user account launched during the current session.
410     optional bool is_disabled = 4;
412     // True if the plugin is PPAPI.
413     optional bool is_pepper = 5;
414   }
415   repeated Plugin plugin = 7;
417   // Figures that can be used to generate application stability metrics.
418   // All values are counts of events since the last time that these
419   // values were reported.
420   // Next tag: 24
421   message Stability {
422     // Total amount of time that the program was running, in seconds,
423     // since the last time a log was recorded, as measured using a client-side
424     // clock implemented via TimeTicks, which guarantees that it is monotonic
425     // and does not jump if the user changes his/her clock.  The TimeTicks
426     // implementation also makes the clock not count time the computer is
427     // suspended.
428     optional int64 incremental_uptime_sec = 1;
430     // Total amount of time that the program was running, in seconds,
431     // since startup, as measured using a client-side clock implemented
432     // via TimeTicks, which guarantees that it is monotonic and does not
433     // jump if the user changes his/her clock.  The TimeTicks implementation
434     // also makes the clock not count time the computer is suspended.
435     // This field was added for M-35.
436     optional int64 uptime_sec = 23;
438     // Page loads along with renderer crashes and hangs, since page load count
439     // roughly corresponds to usage.
440     optional int32 page_load_count = 2;
441     optional int32 renderer_crash_count = 3;
442     optional int32 renderer_hang_count = 4;
444     // Number of renderer crashes that were for extensions.
445     // TODO(isherman): Figure out whether this is also counted in
446     // |renderer_crash_count|.
447     optional int32 extension_renderer_crash_count = 5;
449     // Number of non-renderer child process crashes.
450     optional int32 child_process_crash_count = 6;
452     // Number of times the browser has crashed while logged in as the "other
453     // user" (guest) account.
454     // Logged on ChromeOS only.
455     optional int32 other_user_crash_count = 7;
457     // Number of times the kernel has crashed.
458     // Logged on ChromeOS only.
459     optional int32 kernel_crash_count = 8;
461     // Number of times the system has shut down uncleanly.
462     // Logged on ChromeOS only.
463     optional int32 unclean_system_shutdown_count = 9;
465     //
466     // All the remaining fields in the Stability are recorded at most once per
467     // client session.
468     //
470     // The number of times the program was launched.
471     // This will typically be equal to 1.  However, it is possible that Chrome
472     // was unable to upload stability metrics for previous launches (e.g. due to
473     // crashing early during startup), and hence this value might be greater
474     // than 1.
475     optional int32 launch_count = 15;
476     // The number of times that it didn't exit cleanly (which we assume to be
477     // mostly crashes).
478     optional int32 crash_count = 16;
480     // The number of times the program began, but did not complete, the shutdown
481     // process.  (For example, this may occur when Windows is shutting down, and
482     // it only gives the process a few seconds to clean up.)
483     optional int32 incomplete_shutdown_count = 17;
485     // The number of times the program was able register with breakpad crash
486     // services.
487     optional int32 breakpad_registration_success_count = 18;
489     // The number of times the program failed to register with breakpad crash
490     // services.  If crash registration fails then when the program crashes no
491     // crash report will be generated.
492     optional int32 breakpad_registration_failure_count = 19;
494     // The number of times the program has run under a debugger.  This should
495     // be an exceptional condition.  Running under a debugger prevents crash
496     // dumps from being generated.
497     optional int32 debugger_present_count = 20;
499     // The number of times the program has run without a debugger attached.
500     // This should be most common scenario and should be very close to
501     // |launch_count|.
502     optional int32 debugger_not_present_count = 21;
504     // Stability information for all installed plugins.
505     message PluginStability {
506       // The relevant plugin's information (name, etc.)
507       optional Plugin plugin = 1;
509       // The number of times this plugin's process was launched.
510       optional int32 launch_count = 2;
512       // The number of times this plugin was instantiated on a web page.
513       // This will be >= |launch_count|.
514       // (A page load with multiple sections drawn by this plugin will
515       // increase this count multiple times.)
516       optional int32 instance_count = 3;
518       // The number of times this plugin process crashed.
519       // This value will be <= |launch_count|.
520       optional int32 crash_count = 4;
522       // The number of times this plugin could not be loaded.
523       optional int32 loading_error_count = 5;
524     }
525     repeated PluginStability plugin_stability = 22;
526   }
527   optional Stability stability = 8;
529   // Description of a field trial or experiment that the user is currently
530   // enrolled in.
531   // All metrics reported in this upload can potentially be influenced by the
532   // field trial.
533   message FieldTrial {
534     // The name of the field trial, as a 32-bit identifier.
535     // Currently, the identifier is a hash of the field trial's name.
536     optional fixed32 name_id = 1;
538     // The user's group within the field trial, as a 32-bit identifier.
539     // Currently, the identifier is a hash of the group's name.
540     optional fixed32 group_id = 2;
541   }
542   repeated FieldTrial field_trial = 9;
544   // Information about the A/V output device(s) (typically just a TV).
545   // However, a configuration may have one or more intermediate A/V devices
546   // between the source device and the TV (e.g. an A/V receiver, video
547   // processor, etc.).
548   message ExternalAudioVideoDevice {
549     // The manufacturer name (possibly encoded as a 3-letter code, e.g. "YMH"
550     // for Yamaha).
551     optional string manufacturer_name = 1;
553     // The model name (e.g. "RX-V1900"). Some devices may report generic names
554     // like "receiver" or use the full manufacturer name (e.g "PHILIPS").
555     optional string model_name = 2;
557     // The product code (e.g. "0218").
558     optional string product_code = 3;
560     // The device types. A single device can have multiple types (e.g. a set-top
561     // box could be both a tuner and a player).  The same type may even be
562     // repeated (e.g a device that reports two tuners).
563     enum AVDeviceType {
564       AV_DEVICE_TYPE_UNKNOWN = 0;
565       AV_DEVICE_TYPE_TV = 1;
566       AV_DEVICE_TYPE_RECORDER = 2;
567       AV_DEVICE_TYPE_TUNER = 3;
568       AV_DEVICE_TYPE_PLAYER = 4;
569       AV_DEVICE_TYPE_AUDIO_SYSTEM = 5;
570     }
571     repeated AVDeviceType av_device_type = 4;
573     // The year of manufacture.
574     optional int32 manufacture_year = 5;
576     // The week of manufacture.
577     // Note: per the Wikipedia EDID article, numbering for this field may not
578     // be consistent between manufacturers.
579     optional int32 manufacture_week = 6;
581     // Max horizontal resolution in pixels.
582     optional int32 horizontal_resolution = 7;
584     // Max vertical resolution in pixels.
585     optional int32 vertical_resolution = 8;
587     // Audio capabilities of the device.
588     // Ref: http://en.wikipedia.org/wiki/Extended_display_identification_data
589     message AudioDescription {
590       // Audio format
591       enum AudioFormat {
592         AUDIO_FORMAT_UNKNOWN = 0;
593         AUDIO_FORMAT_LPCM = 1;
594         AUDIO_FORMAT_AC_3 = 2;
595         AUDIO_FORMAT_MPEG1 = 3;
596         AUDIO_FORMAT_MP3 = 4;
597         AUDIO_FORMAT_MPEG2 = 5;
598         AUDIO_FORMAT_AAC = 6;
599         AUDIO_FORMAT_DTS = 7;
600         AUDIO_FORMAT_ATRAC = 8;
601         AUDIO_FORMAT_ONE_BIT = 9;
602         AUDIO_FORMAT_DD_PLUS = 10;
603         AUDIO_FORMAT_DTS_HD = 11;
604         AUDIO_FORMAT_MLP_DOLBY_TRUEHD = 12;
605         AUDIO_FORMAT_DST_AUDIO = 13;
606         AUDIO_FORMAT_MICROSOFT_WMA_PRO = 14;
607       }
608       optional AudioFormat audio_format = 1;
610       // Number of channels (e.g. 1, 2, 8, etc.).
611       optional int32 num_channels = 2;
613       // Supported sample frequencies in Hz (e.g. 32000, 44100, etc.).
614       // Multiple frequencies may be specified.
615       repeated int32 sample_frequency_hz = 3;
617       // Maximum bit rate in bits/s.
618       optional int32 max_bit_rate_per_second = 4;
620       // Bit depth (e.g. 16, 20, 24, etc.).
621       optional int32 bit_depth = 5;
622     }
623     repeated AudioDescription audio_description = 9;
625     // The position in AV setup.
626     // A value of 0 means this device is the TV.
627     // A value of 1 means this device is directly connected to one of
628     // the TV's inputs.
629     // Values > 1 indicate there are 1 or more devices between this device
630     // and the TV.
631     optional int32 position_in_setup = 10;
633     // Whether this device is in the path to the TV.
634     optional bool is_in_path_to_tv = 11;
636     // The CEC version the device supports.
637     // CEC stands for Consumer Electronics Control, a part of the HDMI
638     // specification.  Not all HDMI devices support CEC.
639     // Only devices that support CEC will report a value here.
640     optional int32 cec_version = 12;
642     // This message reports CEC commands seen by a device.
643     // After each log is sent, this information is cleared and gathered again.
644     // By collecting CEC status information by opcode we can determine
645     // which CEC features can be supported.
646     message CECCommand {
647       // The CEC command opcode.  CEC supports up to 256 opcodes.
648       // We add only one CECCommand message per unique opcode.  Only opcodes
649       // seen by the device will be reported. The remainder of the message
650       // accumulates status for this opcode (and device).
651       optional int32 opcode = 1;
653       // The total number of commands received from the external device.
654       optional int32 num_received_direct = 2;
656       // The number of commands received from the external device as part of a
657       // broadcast message.
658       optional int32 num_received_broadcast = 3;
660       // The total number of commands sent to the external device.
661       optional int32 num_sent_direct = 4;
663       // The number of commands sent to the external device as part of a
664       // broadcast message.
665       optional int32 num_sent_broadcast = 5;
667       // The number of aborted commands for unknown reasons.
668       optional int32 num_aborted_unknown_reason = 6;
670       // The number of aborted commands because of an unrecognized opcode.
671       optional int32 num_aborted_unrecognized = 7;
672     }
673     repeated CECCommand cec_command = 13;
674   }
675   repeated ExternalAudioVideoDevice external_audio_video_device = 14;
677   // Information about the current wireless access point. Collected directly
678   // from the wireless access point via standard apis if the device is
679   // connected to the Internet wirelessly. Introduced for Chrome on TV devices
680   // but also can be collected by ChromeOS, Android or other clients.
681   message ExternalAccessPoint {
682     // The manufacturer name, for example "ASUSTeK Computer Inc.".
683     optional string manufacturer = 1;
685     // The model name, for example "Wi-Fi Protected Setup Router".
686     optional string model_name = 2;
688     // The model number, for example "RT-N16".
689     optional string model_number = 3;
691     // The device name (sometime same as model_number), for example "RT-N16".
692     optional string device_name = 4;
693   }
694   optional ExternalAccessPoint external_access_point = 15;
696   // Number of users currently signed into a multiprofile session.
697   // A zero value indicates that the user count changed while the log is open.
698   // Logged only on ChromeOS.
699   optional uint32 multi_profile_user_count = 17;
701   // Information about extensions that are installed, masked to provide better
702   // privacy.  Only extensions from a single profile are reported; this will
703   // generally be the profile used when the browser is started.  The profile
704   // reported on will remain consistent at least until the browser is
705   // relaunched (or the profile is deleted by the user).
706   //
707   // Each client first picks a value for client_key derived from its UMA
708   // client_id:
709   //   client_key = client_id % 4096
710   // Then, each installed extension is mapped into a hash bucket according to
711   //   bucket = CityHash64(StringPrintf("%d:%s",
712   //                                    client_key, extension_id)) % 1024
713   // The client reports the set of hash buckets occupied by all installed
714   // extensions.  If multiple extensions map to the same bucket, that bucket is
715   // still only reported once.
716   repeated int32 occupied_extension_bucket = 18;
718   // The state of loaded extensions for this system. The system can have either
719   // no applicable extensions, extensions only from the webstore and verified by
720   // the webstore, extensions only from the webstore but not verified, or
721   // extensions not from the store. If there is a single off-store extension,
722   // then HAS_OFFSTORE is reported. This should be kept in sync with the
723   // corresponding enum in chrome/browser/metrics/extensions_metrics_provider.cc
724   enum ExtensionsState {
725     NO_EXTENSIONS = 0;
726     NO_OFFSTORE_VERIFIED = 1;
727     NO_OFFSTORE_UNVERIFIED = 2;
728     HAS_OFFSTORE = 3;
729   }
730   optional ExtensionsState offstore_extensions_state = 19;