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

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, 2 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 /* 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 */
sehr 2012/10/22 18:20:09 Declare?
18 PP_FALSE = 0, 19 PP_FALSE = 0,
20 /* Decalare True */
sehr 2012/10/22 18:20:09 Ditto.
19 PP_TRUE = 1 21 PP_TRUE = 1
20 }; 22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698