Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index 5a1461f1021858b4ac30b328f74cefa57cbfdb45..d06dd4263763b1db37183f2c32e370653824238d 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -1085,9 +1085,6 @@ class Isolate { |
return id; |
} |
- // Get (and lazily initialize) the registry for per-isolate symbols. |
- Handle<JSObject> GetSymbolRegistry(); |
- |
void AddCallCompletedCallback(CallCompletedCallback callback); |
void RemoveCallCompletedCallback(CallCompletedCallback callback); |
void FireCallCompletedCallback(); |
@@ -1115,6 +1112,9 @@ class Isolate { |
bool IsRunningMicrotasks() const { return is_running_microtasks_; } |
int GetNextDebugMicrotaskId() { return debug_microtask_count_++; } |
+ Handle<Symbol> SymbolFor(Heap::RootListIndex dictionary_index, |
+ Handle<String> name, bool private_symbol); |
+ |
void SetUseCounterCallback(v8::Isolate::UseCounterCallback callback); |
void CountUsage(v8::Isolate::UseCounterFeature feature); |
@@ -1185,8 +1185,6 @@ class Isolate { |
private: |
friend struct GlobalState; |
friend struct InitializeGlobalState; |
- Handle<JSObject> SetUpSubregistry(Handle<JSObject> registry, Handle<Map> map, |
- const char* name); |
// These fields are accessed through the API, offsets must be kept in sync |
// with v8::internal::Internals (in include/v8.h) constants. This is also |