 Chromium Code Reviews
 Chromium Code Reviews Issue 1114043002:
  Cache experimental natives sources as external strings.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master
    
  
    Issue 1114043002:
  Cache experimental natives sources as external strings.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master| Index: src/api.cc | 
| diff --git a/src/api.cc b/src/api.cc | 
| index c42cab62d55c64735efb722c85f046ab8a2830df..aa5e88729ee059c742ad9c79e08c72c1f38096dc 100644 | 
| --- a/src/api.cc | 
| +++ b/src/api.cc | 
| @@ -363,7 +363,7 @@ StartupData V8::CreateSnapshotDataBlob(const char* custom_source) { | 
| { | 
| HandleScope scope(isolate); | 
| for (int i = 0; i < i::Natives::GetBuiltinsCount(); i++) { | 
| - internal_isolate->bootstrapper()->NativesSourceLookup(i); | 
| + internal_isolate->bootstrapper()->SourceLookup<i::Natives>(i); | 
| } | 
| } | 
| // If we don't do this then we end up with a stray root pointing at the |