Index: runtime/vm/precompiler.h |
diff --git a/runtime/vm/precompiler.h b/runtime/vm/precompiler.h |
index 1d98aeb99a1a9951d3f9bea5abf42644a88c8f10..70161222fd30889ef65721554469ce90f2d163d9 100644 |
--- a/runtime/vm/precompiler.h |
+++ b/runtime/vm/precompiler.h |
@@ -78,14 +78,16 @@ class SymbolSet : public ValueObject { |
class Precompiler : public ValueObject { |
public: |
- static RawError* CompileAll(); |
+ static RawError* CompileAll( |
+ Dart_QualifiedFunctionName* embedder_entry_points); |
srdjan
2015/09/23 18:32:36
Here and elsewhere:
use: Dart_QualifiedFunctionNa
rmacnak
2015/09/23 20:17:35
Done.
|
private: |
explicit Precompiler(Thread* thread); |
- void DoCompileAll(); |
+ void DoCompileAll(Dart_QualifiedFunctionName* embedder_entry_points); |
void ClearAllCode(); |
- void AddRoots(); |
+ void AddRoots(Dart_QualifiedFunctionName* embedder_entry_points); |
+ void AddEntryPoints(Dart_QualifiedFunctionName* entry_points); |
void Iterate(); |
void CleanUp(); |