1 /* Copyright (c) 2011 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 6 /* File Comment. */ 7 8 label Chrome { 9 M13 = 0.0, 10 M14 = 1.0, 11 M15 = 2.0, 12 M16 = 3.0, 13 M17 = 4.0 14 }; 15 16 /* Bogus Interface Foo */ 17 [version=0.0] 18 interface Foo { 19 /** 20 * Comment for function x 21 */ 22 [version=0.0] int32_t Bar(int32_t x); 23 /** 24 * Comment for function x,y 25 */ 26 [version=1.0] int32_t Bar(int32_t x, int32_t y); 27 /** 28 * Comment for function x,y,z 29 */ 30 [version=2.0] int32_t Bar(int32_t x, int32_t y, int32_t z); 31 }; 32 33