OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Time represents an absolute point in time, internally represented as | 5 // Time represents an absolute point in time, internally represented as |
6 // microseconds (s/1,000,000) since a platform-dependent epoch. Each | 6 // microseconds (s/1,000,000) since a platform-dependent epoch. Each |
7 // platform's epoch, along with other system-dependent clock interface | 7 // platform's epoch, along with other system-dependent clock interface |
8 // routines, is defined in time_PLATFORM.cc. | 8 // routines, is defined in time_PLATFORM.cc. |
9 // | 9 // |
10 // TimeDelta represents a duration of time, internally represented in | 10 // TimeDelta represents a duration of time, internally represented in |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 // The resolution of this clock is ~1-15ms. Resolution varies depending | 452 // The resolution of this clock is ~1-15ms. Resolution varies depending |
453 // on hardware/operating system configuration. | 453 // on hardware/operating system configuration. |
454 static TimeTicks Now(); | 454 static TimeTicks Now(); |
455 | 455 |
456 // Returns a platform-dependent high-resolution tick count. Implementation | 456 // Returns a platform-dependent high-resolution tick count. Implementation |
457 // is hardware dependent and may or may not return sub-millisecond | 457 // is hardware dependent and may or may not return sub-millisecond |
458 // resolution. THIS CALL IS GENERALLY MUCH MORE EXPENSIVE THAN Now() AND | 458 // resolution. THIS CALL IS GENERALLY MUCH MORE EXPENSIVE THAN Now() AND |
459 // SHOULD ONLY BE USED WHEN IT IS REALLY NEEDED. | 459 // SHOULD ONLY BE USED WHEN IT IS REALLY NEEDED. |
460 static TimeTicks HighResNow(); | 460 static TimeTicks HighResNow(); |
461 | 461 |
| 462 #if defined(OS_WIN) |
| 463 // Get the absolute value of QPC time drift. For testing. |
| 464 static int64 GetQPCDriftMicroseconds(); |
| 465 #endif |
| 466 |
462 // Returns true if this object has not been initialized. | 467 // Returns true if this object has not been initialized. |
463 bool is_null() const { | 468 bool is_null() const { |
464 return ticks_ == 0; | 469 return ticks_ == 0; |
465 } | 470 } |
466 | 471 |
467 // Returns the internal numeric value of the TimeTicks object. | 472 // Returns the internal numeric value of the TimeTicks object. |
468 int64 ToInternalValue() const { | 473 int64 ToInternalValue() const { |
469 return ticks_; | 474 return ticks_; |
470 } | 475 } |
471 | 476 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 #endif | 540 #endif |
536 }; | 541 }; |
537 | 542 |
538 inline TimeTicks TimeDelta::operator+(TimeTicks t) const { | 543 inline TimeTicks TimeDelta::operator+(TimeTicks t) const { |
539 return TimeTicks(t.ticks_ + delta_); | 544 return TimeTicks(t.ticks_ + delta_); |
540 } | 545 } |
541 | 546 |
542 } // namespace base | 547 } // namespace base |
543 | 548 |
544 #endif // BASE_TIME_H_ | 549 #endif // BASE_TIME_H_ |
OLD | NEW |