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

Unified Diff: src/isolate.h

Issue 2463002: - Add a pointer to StubCache from Isolate.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 10 years, 7 months 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
« no previous file with comments | « no previous file | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
===================================================================
--- src/isolate.h (revision 4763)
+++ src/isolate.h (working copy)
@@ -34,6 +34,7 @@
namespace internal {
class Deserializer;
+class StubCache;
class Isolate {
public:
@@ -54,6 +55,7 @@
// Accessors.
Heap* heap() { return &heap_; }
+ StubCache* stub_cache() { return stub_cache_; }
private:
Isolate();
@@ -63,6 +65,7 @@
bool Init(Deserializer* des);
Heap heap_;
+ StubCache* stub_cache_;
DISALLOW_COPY_AND_ASSIGN(Isolate);
};
« no previous file with comments | « no previous file | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698