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_multiple_files = true; 21 22import "frameworks/base/core/proto/android/content/clipdescription.proto"; 23import "frameworks/base/core/proto/android/content/intent.proto"; 24import "frameworks/base/core/proto/android/privacy.proto"; 25 26// An android.content.ClipData object. 27message ClipDataProto { 28 option (.android.msg_privacy).dest = DEST_LOCAL; 29 30 optional ClipDescriptionProto description = 1; 31 32 // Custom dump of an android.graphics.Bitmap object. 33 message Icon { 34 option (.android.msg_privacy).dest = DEST_AUTOMATIC; 35 36 optional int32 width = 1; 37 optional int32 height = 2; 38 } 39 optional Icon icon = 2; 40 41 // An android.content.ClipData.Item object. 42 message Item { 43 option (.android.msg_privacy).dest = DEST_LOCAL; 44 45 oneof data { 46 string html_text = 1; 47 string text = 2; 48 string uri = 3; 49 IntentProto intent = 4; 50 bool nothing = 5 [ (.android.privacy).dest = DEST_AUTOMATIC ]; 51 } 52 } 53 repeated Item items = 3; 54} 55