summaryrefslogtreecommitdiff
path: root/deps/v8/src/base/platform/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/base/platform/time.h')
-rw-r--r--deps/v8/src/base/platform/time.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/base/platform/time.h b/deps/v8/src/base/platform/time.h
index b348236ff1..9dfa47d4e5 100644
--- a/deps/v8/src/base/platform/time.h
+++ b/deps/v8/src/base/platform/time.h
@@ -30,7 +30,7 @@ class TimeTicks;
// This class represents a duration of time, internally represented in
// microseonds.
-class TimeDelta V8_FINAL {
+class TimeDelta FINAL {
public:
TimeDelta() : delta_(0) {}
@@ -158,7 +158,7 @@ class TimeDelta V8_FINAL {
// This class represents an absolute point in time, internally represented as
// microseconds (s/1,000,000) since 00:00:00 UTC, January 1, 1970.
-class Time V8_FINAL {
+class Time FINAL {
public:
static const int64_t kMillisecondsPerSecond = 1000;
static const int64_t kMicrosecondsPerMillisecond = 1000;
@@ -295,7 +295,7 @@ inline Time operator+(const TimeDelta& delta, const Time& time) {
// Time::Now() may actually decrease or jump). But note that TimeTicks may
// "stand still", for example if the computer suspended.
-class TimeTicks V8_FINAL {
+class TimeTicks FINAL {
public:
TimeTicks() : ticks_(0) {}