Home | History | Annotate | Download | only in test_namespace
      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 describe {
      9   int32_t;
     10 };
     11 
     12 /* PPAPI Structure */
     13 struct PP_Size {
     14   /* This value represents the width of the rectangle. */
     15   int32_t width;
     16   /* This value represents the height of the rectangle. */
     17   int32_t height;
     18 };
     19 
     20 /* PPAPI Enum */
     21 enum PP_Bool {
     22   /* Decalare False */
     23   PP_FALSE = 0,
     24   /* Decalare True */
     25   PP_TRUE  = 1
     26 };
     27