Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 9eddbb71c5fdbb6611f90c2eb1f9f79091172042..9445bcdf858bbcfe534f39d306645998285a3764 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -5376,16 +5376,13 @@ struct JitCodeEvent { |
* profile/evaluate-performance/rail |
*/ |
enum RAILMode { |
- // Default performance mode: V8 will optimize for both latency and |
- // throughput in this mode. |
- PERFORMANCE_DEFAULT, |
// Response performance mode: In this mode very low virtual machine latency |
// is provided. V8 will try to avoid JavaScript execution interruptions. |
// Throughput may be throttled. |
PERFORMANCE_RESPONSE, |
// Animation performance mode: In this mode low virtual machine latency is |
// provided. V8 will try to avoid as many JavaScript execution interruptions |
- // as possible. Throughput may be throttled |
+ // as possible. Throughput may be throttled. This is the default mode. |
PERFORMANCE_ANIMATION, |
// Idle performance mode: The embedder is idle. V8 can complete deferred work |
// in this mode. |