Index: ppapi/c/pp_time.h |
=================================================================== |
--- ppapi/c/pp_time.h (revision 73626) |
+++ ppapi/c/pp_time.h (working copy) |
@@ -7,7 +7,7 @@ |
/** |
* @file |
- * Defines the API ... |
+ * This file defines time and time ticks values. |
dmichael(do not use this one)
2011/02/03 17:42:00
'types' is right here.
|
*/ |
#include "ppapi/c/pp_macros.h" |
@@ -17,9 +17,9 @@ |
* @{ |
*/ |
/** |
- * PP_Time represents the "wall clock time" according to the browser and is |
- * defined as the number of seconds since the Epoch (00:00:00 UTC, January 1, |
- * 1970). |
+ * The PP_Time type represents the "wall clock time" according to the browser |
+ * and is defined as the number of seconds since the Epoch (00:00:00 UTC, |
+ * January 1, 1970). |
*/ |
typedef double PP_Time; |
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Time, 8); |
@@ -32,10 +32,11 @@ |
* @{ |
*/ |
/** |
- * Represents time ticks which is measured in seconds and is used for indicating |
- * the time that certain messages were received. In contrast to PP_Time, it |
- * does not correspond to any actual wall clock time and will not change |
- * discontinuously if the user changes their computer clock. |
+ * The PP_TimeTicks value represents time ticks which are measured in seconds |
dmichael(do not use this one)
2011/02/03 17:42:00
The->A
jond
2011/02/03 18:03:14
Done.
jond
2011/02/03 18:03:14
Done.
|
+ * and are used for indicating the time that certain messages were received. |
+ * In contrast to PP_Time, PP_TimeTicks does not correspond to any actual |
+ * wall clock time and will not change discontinuously if the user changes |
+ * their computer clock. |
* |
* The units are in seconds, but are not measured relative to any particular |
* epoch, so the most you can do is compare two values. |