Chromium Code Reviews| Index: src/api.cc |
| =================================================================== |
| --- src/api.cc (revision 10391) |
| +++ src/api.cc (working copy) |
| @@ -4048,6 +4048,11 @@ |
| heap_statistics->set_heap_size_limit(heap->MaxReserved()); |
| } |
|
mnaganov (inactive)
2012/01/12 10:37:27
nit: 2 empty lines between function definitions.
yurys
2012/01/12 12:00:06
Done.
|
| +void v8::V8::VisitExternalResources(ExternalResourceVisitor* visitor) { |
| + i::Isolate* isolate = i::Isolate::Current(); |
| + IsDeadCheck(isolate, "v8::V8::VisitExternalResources"); |
| + isolate->heap()->VisitExternalResources(visitor); |
| +} |
| bool v8::V8::IdleNotification(int hint) { |
| // Returning true tells the caller that it need not |
| @@ -6029,8 +6034,6 @@ |
| callback); |
| } |
| - |
|
mnaganov (inactive)
2012/01/12 10:37:27
nit: please, leave 2 lines here, too
yurys
2012/01/12 12:00:06
Done.
|
| - |
| v8::Testing::StressType internal::Testing::stress_type_ = |
| v8::Testing::kStressTypeOpt; |