Home | History | Annotate | Download | only in common

Lines Matching refs:time

24 // Implements a clock that can be made to tell any time you want.
29 base::Time GetWallclockTime() override {
33 base::Time GetMonotonicTime() override {
37 base::Time GetBootTime() override {
41 void SetWallclockTime(const base::Time &time) {
42 wallclock_time_ = time;
45 void SetMonotonicTime(const base::Time &time) {
46 monotonic_time_ = time;
49 void SetBootTime(const base::Time &time) {
50 boot_time_ = time;
54 base::Time wallclock_time_;
55 base::Time monotonic_time_;
56 base::Time boot_time_;