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

Side by Side Diff: ppapi/generators/test_namespace/foo.idl

Issue 11235016: Change the way we generate versions (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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_namespace/bar.idl ('k') | ppapi/generators/test_parser/enum.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /* PPAPI Structure */ 8 /* PPAPI Structure */
9 struct PP_Size { 9 struct PP_Size {
10 /* This value represents the width of the rectangle. */ 10 /* This value represents the width of the rectangle. */
11 int32_t width; 11 int32_t width;
12 /* This value represents the height of the rectangle. */ 12 /* This value represents the height of the rectangle. */
13 int32_t height; 13 int32_t height;
14 }; 14 };
15 15
16 /* PPAPI Enum */ 16 /* PPAPI Enum */
17 enum PP_Bool { 17 enum PP_Bool {
18 /* Decalare False */
18 PP_FALSE = 0, 19 PP_FALSE = 0,
20 /* Decalare True */
19 PP_TRUE = 1 21 PP_TRUE = 1
20 }; 22 };
OLDNEW
« no previous file with comments | « ppapi/generators/test_namespace/bar.idl ('k') | ppapi/generators/test_parser/enum.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698