Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(696)

Unified Diff: src/isolate.h

Issue 8536042: Extension state made per-siolate in genesis (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 116b802670ed9689143514fbe6965d96c2c4feb0..ac2caabc22fd62fe8ab05f3915f1ebabcadddb83 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -59,6 +59,7 @@ class CpuProfiler;
class DeoptimizerData;
class Deserializer;
class EmptyStatement;
+class ExtensionStates;
class ExternalReferenceTable;
class Factory;
class FunctionInfoListener;
@@ -810,6 +811,8 @@ class Isolate {
DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; }
ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
+ ExtensionStates* extension_states() { return extension_states_; }
Vitaly Repeshko 2011/11/15 18:14:17 It's really unfortunate that this is a part of the
+
TranscendentalCache* transcendental_cache() const {
return transcendental_cache_;
}
@@ -1127,6 +1130,7 @@ class Isolate {
Mutex* debugger_access_;
Heap heap_;
Logger* logger_;
+ ExtensionStates* extension_states_;
StackGuard stack_guard_;
StatsTable* stats_table_;
StubCache* stub_cache_;

Powered by Google App Engine
This is Rietveld 408576698