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

Side by Side Diff: ppapi/c/dev/pp_optional_structs_dev.h

Issue 103993006: Add PPB_Alarms_Dev interface definition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years 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/api/dev/ppb_alarms_dev.idl ('k') | ppapi/c/dev/ppb_alarms_dev.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright (c) 2013 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 /* From dev/pp_optional_structs_dev.idl modified Tue Dec 10 17:39:38 2013. */
7
8 #ifndef PPAPI_C_DEV_PP_OPTIONAL_STRUCTS_DEV_H_
9 #define PPAPI_C_DEV_PP_OPTIONAL_STRUCTS_DEV_H_
10
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_macros.h"
13 #include "ppapi/c/pp_stdint.h"
14
15 /**
16 * @file
17 * This file defines optional structs for primitive types.
18 */
19
20
21 /**
22 * @addtogroup Structs
23 * @{
24 */
25 struct PP_Optional_Double_Dev {
26 double value;
27 PP_Bool is_set;
28 };
29 /**
30 * @}
31 */
32
33 #endif /* PPAPI_C_DEV_PP_OPTIONAL_STRUCTS_DEV_H_ */
34
OLDNEW
« no previous file with comments | « ppapi/api/dev/ppb_alarms_dev.idl ('k') | ppapi/c/dev/ppb_alarms_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698