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

Side by Side Diff: ppapi/generators/test_cgen/structs.idl

Issue 7715036: More multi-version support (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
« no previous file with comments | « ppapi/generators/test_cgen/interface.idl ('k') | ppapi/generators/test_cgen_range/versions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /* This file will test that the IDL snippet matches the comment */ 7 /**
8 * This file will test that the IDL snippet matches the comment.
9 */
8 10
9 /* typedef uint8_t s_array[3]; */ 11 /* typedef uint8_t s_array[3]; */
10 typedef uint8_t[3] s_array; 12 typedef uint8_t[3] s_array;
11 13
12 /* typedef enum { esv1 = 1, esv2 = 2 } senum; */ 14 /* typedef enum { esv1 = 1, esv2 = 2 } senum; */
13 enum senum { 15 enum senum {
14 esv1=1, 16 esv1=1,
15 esv2=2 17 esv2=2
16 }; 18 };
17 19
(...skipping 17 matching lines...) Expand all
35 /* 37 /*
36 * struct sfoo { 38 * struct sfoo {
37 * s_array screen[480][640]; 39 * s_array screen[480][640];
38 * findfunc_t myfunc; 40 * findfunc_t myfunc;
39 * }; 41 * };
40 */ 42 */
41 struct sfoo { 43 struct sfoo {
42 s_array[480][640] screen; 44 s_array[480][640] screen;
43 findfunc_t myfunc; 45 findfunc_t myfunc;
44 }; 46 };
OLDNEW
« no previous file with comments | « ppapi/generators/test_cgen/interface.idl ('k') | ppapi/generators/test_cgen_range/versions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698