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

Unified Diff: ppapi/c/pp_time.h

Issue 6312098: Updating documentation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« ppapi/c/pp_size.h ('K') | « ppapi/c/pp_size.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« ppapi/c/pp_size.h ('K') | « ppapi/c/pp_size.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698