| 35 | |
| 36 | template <typename RepresentationType> |
| 37 | Duration DurationFromSeconds(RepresentationType representation) { |
| 38 | return std::chrono::duration_cast<Duration>( |
| 39 | std::chrono::duration<RepresentationType>(representation)); |
| 40 | } |
| 41 | |
| 42 | template <typename RepresentationType> |
| 43 | Duration DurationFromMilliseconds(RepresentationType representation) { |