OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/profiler/tracked_time.h" | 5 #include "base/profiler/tracked_time.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
10 #include <mmsystem.h> // Declare timeGetTime()... after including build_config. | 10 #include <mmsystem.h> // Declare timeGetTime()... after including build_config. |
(...skipping 28 matching lines...) Expand all Loading... |
39 // static | 39 // static |
40 Duration Duration::FromMilliseconds(int ms) { return Duration(ms); } | 40 Duration Duration::FromMilliseconds(int ms) { return Duration(ms); } |
41 | 41 |
42 int32 Duration::InMilliseconds() const { return ms_; } | 42 int32 Duration::InMilliseconds() const { return ms_; } |
43 | 43 |
44 //------------------------------------------------------------------------------ | 44 //------------------------------------------------------------------------------ |
45 | 45 |
46 TrackedTime::TrackedTime() : ms_(0) {} | 46 TrackedTime::TrackedTime() : ms_(0) {} |
47 TrackedTime::TrackedTime(int32 ms) : ms_(ms) {} | 47 TrackedTime::TrackedTime(int32 ms) : ms_(ms) {} |
48 TrackedTime::TrackedTime(const base::TimeTicks& time) | 48 TrackedTime::TrackedTime(const base::TimeTicks& time) |
49 : ms_((time - base::TimeTicks()).InMilliseconds()) { | 49 : ms_(static_cast<int32>((time - base::TimeTicks()).InMilliseconds())) { |
50 } | 50 } |
51 | 51 |
52 // static | 52 // static |
53 TrackedTime TrackedTime::Now() { | 53 TrackedTime TrackedTime::Now() { |
54 #if defined(OS_WIN) | 54 #if defined(OS_WIN) |
55 // Use lock-free accessor to 32 bit time. | 55 // Use lock-free accessor to 32 bit time. |
56 // Note that TimeTicks::Now() is built on this, so we have "compatible" | 56 // Note that TimeTicks::Now() is built on this, so we have "compatible" |
57 // times when we down-convert a TimeTicks sample. | 57 // times when we down-convert a TimeTicks sample. |
58 return TrackedTime(base::TimeTicks::UnprotectedNow()); | 58 return TrackedTime(base::TimeTicks::UnprotectedNow()); |
59 #else | 59 #else |
60 // Posix has nice cheap 64 bit times, so we just down-convert it. | 60 // Posix has nice cheap 64 bit times, so we just down-convert it. |
61 return TrackedTime(base::TimeTicks::Now()); | 61 return TrackedTime(base::TimeTicks::Now()); |
62 #endif // OS_WIN | 62 #endif // OS_WIN |
63 } | 63 } |
64 | 64 |
65 Duration TrackedTime::operator-(const TrackedTime& other) const { | 65 Duration TrackedTime::operator-(const TrackedTime& other) const { |
66 return Duration(ms_ - other.ms_); | 66 return Duration(ms_ - other.ms_); |
67 } | 67 } |
68 | 68 |
69 TrackedTime TrackedTime::operator+(const Duration& other) const { | 69 TrackedTime TrackedTime::operator+(const Duration& other) const { |
70 return TrackedTime(ms_ + other.ms_); | 70 return TrackedTime(ms_ + other.ms_); |
71 } | 71 } |
72 | 72 |
73 bool TrackedTime::is_null() const { return ms_ == 0; } | 73 bool TrackedTime::is_null() const { return ms_ == 0; } |
74 | 74 |
75 } // namespace tracked_objects | 75 } // namespace tracked_objects |
OLD | NEW |