Add native libraries to gn apks
[chromium-blink-merge.git] / ppapi / generators / test_cgen_range / dev_channel_interface.idl
blobd3ae0ec4d81f8cd9254738775b5999e201fb67af
1 /* Copyright 2013 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 */
6 label Chrome {
7 M13 = 1.0,
8 [channel=dev] M14 = 1.1,
9 M15 = 1.2,
10 [channel=dev] M16 = 1.3,
11 M17 = 1.4
14 describe {
15 int32_t;
16 void;
19 /**
20 * TestDev
22 interface TestDev {
23 /**
24 * TestDev1()
26 void TestDev1();
28 /**
29 * TestDev2()
31 [dev_version=1.1]
32 void TestDev2();
34 /**
35 * TestDev3()
37 [version=1.2]
38 void TestDev3();
40 /**
41 * TestDev4()
43 [dev_version=1.3]
44 void TestDev4();
47 /**
48 * TestDevToStable
50 interface TestDevToStable {
51 /**
52 * Foo() comment.
54 void Foo([in] int32_t x);
56 /**
57 * Bar() comment.
59 [dev_version=1.1, version=1.2]
60 void Bar([in] int32_t x);
62 /**
63 * Baz() comment.
65 [dev_version=1.1, version=1.2]
66 void Baz([in] int32_t x);