Changeset 154032 in webkit for trunk/Source/JavaScriptCore/jsc.cpp
- Timestamp:
- Aug 13, 2013, 5:51:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jsc.cpp
r153218 r154032 172 172 void StopWatch::start() 173 173 { 174 m_startTime = currentTime();174 m_startTime = monotonicallyIncreasingTime(); 175 175 } 176 176 177 177 void StopWatch::stop() 178 178 { 179 m_stopTime = currentTime();179 m_stopTime = monotonicallyIncreasingTime(); 180 180 } 181 181
Note:
See TracChangeset
for help on using the changeset viewer.