Index: runtime/vm/precompiler.h |
diff --git a/runtime/vm/precompiler.h b/runtime/vm/precompiler.h |
index 1d98aeb99a1a9951d3f9bea5abf42644a88c8f10..4dede4c4d36a7345631fa526f9a3da7a59ff931e 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[]); |
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(); |