Index: include/v8-platform.h |
diff --git a/include/v8-platform.h b/include/v8-platform.h |
index 7bac11aef069957fc7e22b0a437becdac44b8148..67fb384c99ba523783a110ba0f9b077da6c5ff09 100644 |
--- a/include/v8-platform.h |
+++ b/include/v8-platform.h |
@@ -56,7 +56,6 @@ class Platform { |
*/ |
virtual void CallOnForegroundThread(Isolate* isolate, Task* task) = 0; |
- |
/** |
* Monotonically increasing time in seconds from an arbitrary fixed point in |
* the past. This function is expected to return at least |
@@ -64,11 +63,7 @@ class Platform { |
* it is recommended that the fixed point be no further in the past than |
* the epoch. |
**/ |
- virtual double MonotonicallyIncreasingTime() { |
- // TODO(rmcilroy): Remove this default implementation when Chromium |
- // change has landed. |
- return 0; |
- } |
+ virtual double MonotonicallyIncreasingTime() = 0; |
}; |
} // namespace v8 |