Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index 08ccf9105c8f97eb58849213083e88b25c01bc63..7e3ca9a2e4b9899380549e0ead9213bff43dcc72 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -1062,12 +1062,6 @@ class Isolate { |
void* stress_deopt_count_address() { return &stress_deopt_count_; } |
- void* virtual_handler_register_address() { |
- return &virtual_handler_register_; |
- } |
- |
- void* virtual_slot_register_address() { return &virtual_slot_register_; } |
- |
base::RandomNumberGenerator* random_number_generator(); |
// Given an address occupied by a live code object, return that object. |
@@ -1412,9 +1406,6 @@ class Isolate { |
// Counts deopt points if deopt_every_n_times is enabled. |
unsigned int stress_deopt_count_; |
- Address virtual_handler_register_; |
- Address virtual_slot_register_; |
- |
int next_optimization_id_; |
// Counts javascript calls from the API. Wraps around on overflow. |