Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Protocol buffer for permission reports sent to the safe browsing client-side | |
| 6 // detection (CSD) frontends. | |
| 7 | |
| 8 syntax = "proto2"; | |
| 9 | |
| 10 option optimize_for = LITE_RUNTIME; | |
| 11 | |
| 12 package safe_browsing; | |
| 13 | |
| 14 // A single Permission Report sent to Safe Browsing client-side detection | |
| 15 // frontends. | |
| 16 message PermissionReportExtension { | |
| 17 // The origin (scheme/host/port) of the site requesting the permission. | |
| 18 optional string origin = 1; | |
| 19 | |
| 20 // The permission being requested/acted upon. | |
| 21 optional PermissionType permission = 2; | |
| 22 | |
| 23 // The platform. | |
| 24 optional PlatformType platform_type = 3; | |
| 25 | |
| 26 // When the request was initiated. | |
| 27 repeated RequestTrigger request_trigger = 4; | |
| 28 | |
| 29 // The action the user took. Required. | |
| 30 optional Action action = 5; | |
| 31 | |
| 32 // The UI used to complete the action. | |
| 33 optional SourceUI source_ui = 6; | |
| 34 | |
| 35 // The relevant field trials enabled for this report. | |
| 36 repeated string field_trials = 7; | |
| 37 | |
| 38 // Platform | |
| 39 enum PlatformType { | |
| 40 PLATFORM_TYPE_UNSPECIFIED = 0; | |
| 41 DESKTOP = 1; | |
| 42 ANDROID = 2; | |
| 43 } | |
| 44 | |
| 45 // Various request triggers we want to record, e.g. on page load. | |
| 46 enum RequestTrigger { | |
| 47 REQUEST_TRIGGER_UNSPECIFIED = 0; | |
| 48 ONLOAD = 1; | |
| 49 AFTER_GESTURE = 2; | |
| 50 } | |
| 51 | |
| 52 // User Permission Actions | |
| 53 enum Action { | |
| 54 GRANTED = 0; | |
| 55 DENIED = 1; | |
| 56 DISMISSED = 2; | |
| 57 IGNORED = 3; | |
| 58 REVOKED = 4; | |
| 59 } | |
| 60 | |
| 61 // Places in the UI that a permission change can occur. | |
| 62 enum SourceUI { | |
| 63 SOURCE_UI_UNSPECIFIED = 0; | |
| 64 PROMPT = 1; | |
| 65 OIB = 2; | |
| 66 // TODO(stefanocs): Remove CONTENT_SETTINGS from the corresponding Safe | |
| 67 // Browsing logs proto. | |
| 68 SITE_SETTINGS = 3; | |
| 69 } | |
| 70 | |
| 71 // The various types of permissions. This should stay in sync with the | |
| 72 // corresponding Safe Browsing logs enum. | |
| 73 enum PermissionType { | |
| 74 // Unknown/invalid API. The zero-index is used in practice to represent | |
| 75 // disabling of all APIs for a given full hash. | |
|
kcarattini
2016/05/25 00:21:29
The comment isn't relevant in this context, please
stefanocs
2016/05/25 00:38:32
Done.
| |
| 76 UNKNOWN_PERMISSION = 0; | |
| 77 | |
|
kcarattini
2016/05/25 00:21:29
remove extra line
stefanocs
2016/05/25 00:38:32
Done.
| |
| 78 MIDI_SYSEX = 1; | |
| 79 PUSH_MESSAGING = 2; | |
| 80 NOTIFICATIONS = 3; | |
| 81 GEOLOCATION = 4; | |
| 82 PROTECTED_MEDIA_IDENTIFIER = 5; | |
| 83 MIDI = 6; | |
| 84 DURABLE_STORAGE = 7; | |
| 85 AUDIO_CAPTURE = 8; | |
| 86 VIDEO_CAPTURE = 9; | |
| 87 } | |
| 88 } | |
| OLD | NEW |