1 // FIXME: license file, or use the -l option to generate the files with the header. 2 /////////////////////////////////////////////////////////////////////////////// 3 // THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. // 4 /////////////////////////////////////////////////////////////////////////////// 5 6 // This file is a snapshot of an AIDL file. Do not edit it manually. There are 7 // two cases: 8 // 1). this is a frozen version file - do not edit this in any case. 9 // 2). this is a 'current' file. If you make a backwards compatible change to 10 // the interface (from the latest frozen version), the build system will 11 // prompt you to update this file with `m <name>-update-api`. 12 // 13 // You must not make a backward incompatible change to any AIDL file built 14 // with the aidl_interface module type with versions property set. The module 15 // type is used to build AIDL files in a way that they can be used across 16 // independently updatable components of the system. If a device is shipped 17 // with such a backward incompatible change, it has a high risk of breaking 18 // later when a module using the interface is updated, e.g., Mainline modules. 19 20 package hidl2aidl.test; 21 @Backing(type="int") @VintfStability 22 enum FooFlag { 23 NONE = 0, 24 FIRST = 1, 25 SECOND = 2, 26 THIRD = 4, 27 } 28