1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17syntax = "proto2";
18package android.content;
19
20option java_package = "android.content";
21option java_multiple_files = true;
22
23import "frameworks/base/core/proto/android/content/component_name.proto";
24import "frameworks/base/core/proto/android/os/patternmatcher.proto";
25import "frameworks/base/libs/incident/proto/android/privacy.proto";
26
27// Next Tag: 13
28message IntentProto {
29    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
30
31    enum DockState {
32        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
33        // the phone is not in any dock.
34        DOCK_STATE_UNDOCKED = 0;
35
36        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
37        // the phone is in a desk dock.
38        DOCK_STATE_DESK = 1;
39
40        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
41        // the phone is in a car dock.
42        DOCK_STATE_CAR = 2;
43
44        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
45        // the phone is in a analog (low end) dock.
46        DOCK_STATE_LE_DESK = 3;
47
48        // Used as an int value for Intent#EXTRA_DOCK_STATE to represent that
49        // the phone is in a digital (high end) dock.
50        DOCK_STATE_HE_DESK = 4;
51    }
52
53    optional string action = 1;
54    repeated string categories = 2;
55    optional string data = 3 [ (.android.privacy).dest = DEST_EXPLICIT ];
56    optional string type = 4;
57    optional string flag = 5;
58    optional string package = 6;
59    optional ComponentNameProto component = 7;
60    optional string source_bounds = 8;
61    optional string clip_data = 9 [ (.android.privacy).dest = DEST_EXPLICIT ];
62    optional string extras = 10 [ (.android.privacy).dest = DEST_LOCAL ];
63    optional int32 content_user_hint = 11;
64    optional string selector = 12;
65}
66
67// Next Tag: 11
68message IntentFilterProto {
69    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
70
71    repeated string actions = 1;
72    repeated string categories = 2;
73    repeated string data_schemes = 3  [ (.android.privacy).dest = DEST_EXPLICIT ];
74    repeated android.os.PatternMatcherProto data_scheme_specs = 4;
75    repeated AuthorityEntryProto data_authorities = 5;
76    repeated android.os.PatternMatcherProto data_paths = 6;
77    repeated string data_types = 7;
78    optional int32 priority = 8;
79    optional bool has_partial_types = 9;
80    optional bool get_auto_verify = 10;
81}
82
83message AuthorityEntryProto {
84    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
85
86    optional string host = 1;
87    optional bool wild = 2;
88    optional int32 port = 3;
89}
90