| Index: third_party/WebKit/Source/core/timing/PerformanceEntry.cpp
|
| diff --git a/third_party/WebKit/Source/core/timing/PerformanceEntry.cpp b/third_party/WebKit/Source/core/timing/PerformanceEntry.cpp
|
| index e5779fac0c398b53f4e6acf8c6ecc88b5e026c36..46791f12dcedc73ab922af952666259fc78f9b4e 100644
|
| --- a/third_party/WebKit/Source/core/timing/PerformanceEntry.cpp
|
| +++ b/third_party/WebKit/Source/core/timing/PerformanceEntry.cpp
|
| @@ -55,11 +55,11 @@ String PerformanceEntry::entryType() const {
|
| return m_entryType;
|
| }
|
|
|
| -double PerformanceEntry::startTime() const {
|
| +DOMHighResTimeStamp PerformanceEntry::startTime() const {
|
| return m_startTime;
|
| }
|
|
|
| -double PerformanceEntry::duration() const {
|
| +DOMHighResTimeStamp PerformanceEntry::duration() const {
|
| return m_duration;
|
| }
|
|
|
|
|