Chromium Code Reviews| Index: base/time.h |
| =================================================================== |
| --- base/time.h (revision 53666) |
| +++ base/time.h (working copy) |
| @@ -213,6 +213,8 @@ |
| int second; // Second within the current minute (0-59 plus leap |
| // seconds which may take it up to 60). |
| int millisecond; // Milliseconds within the current second (0-999) |
| + |
| + bool HasValidValues() const; |
|
brettw
2010/07/27 00:10:27
Can you add a comment saying what this does?
|
| }; |
| // Contains the NULL time. Use Time::Now() to get the current time. |