Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: ppapi/generators/test_cgen_range/versions.idl

Issue 231243002: PPAPI: Move some of NexeFileDidOpen to NexeLoadManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix crash Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /* File Comment. */ 6 /* File Comment. */
7 7
8 label Chrome { 8 label Chrome {
9 M13 = 0.0, 9 M13 = 0.0,
10 M14 = 1.0, 10 M14 = 1.0,
11 M15 = 2.0, 11 M15 = 2.0,
12 M16 = 3.0, 12 M16 = 3.0,
13 M17 = 4.0 13 M17 = 4.0
14 }; 14 };
15 15
16 describe {
17 int32_t;
18 };
19
20 /* Bogus Interface Foo */ 16 /* Bogus Interface Foo */
21 [version=0.0] 17 [version=0.0]
22 interface Foo { 18 interface Foo {
23 /** 19 /**
24 * Comment for function x 20 * Comment for function x
25 */ 21 */
26 [version=0.0] int32_t Bar(int32_t x); 22 [version=0.0] int32_t Bar(int32_t x);
27 /** 23 /**
28 * Comment for function x,y 24 * Comment for function x,y
29 */ 25 */
30 [version=1.0] int32_t Bar(int32_t x, int32_t y); 26 [version=1.0] int32_t Bar(int32_t x, int32_t y);
31 /** 27 /**
32 * Comment for function x,y,z 28 * Comment for function x,y,z
33 */ 29 */
34 [version=2.0] int32_t Bar(int32_t x, int32_t y, int32_t z); 30 [version=2.0] int32_t Bar(int32_t x, int32_t y, int32_t z);
35 }; 31 };
36 32
OLDNEW
« no previous file with comments | « ppapi/generators/test_cgen_range/versions.h ('k') | ppapi/native_client/src/trusted/plugin/plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698