Index: include/v8-profiler.h |
diff --git a/include/v8-profiler.h b/include/v8-profiler.h |
index 7898fef1967f0c86df5fd6d94fde20d3575eb423..7a71bf10f2abebdd4910fe0bfed60fd7e0357f66 100644 |
--- a/include/v8-profiler.h |
+++ b/include/v8-profiler.h |
@@ -149,16 +149,16 @@ class V8EXPORT CpuProfile { |
const CpuProfileNode* GetSample(int index) const; |
/** |
- * Returns time when the profile recording started (in microseconds |
+ * Returns time when the profile recording started (in milliseconds |
* since the Epoch). |
*/ |
- int64_t GetStartTime() const; |
+ double GetStartTime() const; |
/** |
- * Returns time when the profile recording was stopped (in microseconds |
+ * Returns time when the profile recording was stopped (in milliseconds |
* since the Epoch). |
*/ |
- int64_t GetEndTime() const; |
+ double GetEndTime() const; |
/** |
* Deletes the profile and removes it from CpuProfiler's list. |