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

Unified Diff: src/isolate.h

Issue 366153002: Add script streaming API (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: special chars fix Created 6 years, 4 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
« include/v8.h ('K') | « src/compiler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 9ef6fc732a9f9f64c22fd4449ce28834a0107083..428e6f06411ac7da89c39306d9c1ad2e27878090 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -32,6 +32,7 @@ class RandomNumberGenerator;
namespace internal {
+class BackgroundParserThread;
class Bootstrapper;
class CallInterfaceDescriptor;
class CodeGenerator;
@@ -1055,6 +1056,10 @@ class Isolate {
return optimizing_compiler_thread_;
}
+ BackgroundParserThread* background_parser_thread() {
+ return background_parser_thread_;
+ }
+
int num_sweeper_threads() const {
return num_sweeper_threads_;
}
@@ -1313,6 +1318,7 @@ class Isolate {
DeferredHandles* deferred_handles_head_;
OptimizingCompilerThread* optimizing_compiler_thread_;
+ BackgroundParserThread* background_parser_thread_;
SweeperThread** sweeper_thread_;
int num_sweeper_threads_;
« include/v8.h ('K') | « src/compiler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698