| OLD | NEW |
| 1 // Copyright 2009 Google Inc. All Rights Reserved. | 1 // Copyright 2009 Google Inc. All Rights Reserved. |
| 2 // Author: jaceks@google.com (Jacek Surazski) | 2 // Author: jaceks@google.com (Jacek Surazski) |
| 3 | 3 |
| 4 syntax = "proto2"; | 4 syntax = "proto2"; |
| 5 | 5 |
| 6 package userfeedback; | 6 package userfeedback; |
| 7 | 7 |
| 8 // Data present in Web related feedbacks | 8 // Data present in Web related feedbacks |
| 9 | 9 |
| 10 import "annotations.proto"; | 10 import "annotations.proto"; |
| 11 import "config.proto"; | |
| 12 import "dom.proto"; | 11 import "dom.proto"; |
| 13 import "math.proto"; | 12 import "math.proto"; |
| 14 | 13 |
| 15 // Data present in feedbacks sent from web extension. | 14 // Data present in feedbacks sent from web extension. |
| 16 message WebData { | 15 message WebData { |
| 17 // Data captured from DOM Navigator object. | 16 // Data captured from DOM Navigator object. |
| 18 optional Navigator navigator = 1; | 17 optional Navigator navigator = 1; |
| 19 | 18 |
| 20 // Details of the extension from which this data was sent. | 19 // Details of the extension from which this data was sent. |
| 21 optional ExtensionDetails extension_details = 2; | 20 optional ExtensionDetails extension_details = 2; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // immediately. | 60 // immediately. |
| 62 optional bool DEPRECATED_urgent = 3 [default = false]; | 61 optional bool DEPRECATED_urgent = 3 [default = false]; |
| 63 }; | 62 }; |
| 64 | 63 |
| 65 // Product specific data. Contains one key/value pair that is specific to the | 64 // Product specific data. Contains one key/value pair that is specific to the |
| 66 // product for which feedback is submitted. | 65 // product for which feedback is submitted. |
| 67 message ProductSpecificData { | 66 message ProductSpecificData { |
| 68 required string key = 1; | 67 required string key = 1; |
| 69 optional string value = 2; | 68 optional string value = 2; |
| 70 }; | 69 }; |
| OLD | NEW |