Index: net/proxy/proxy_resolver_v8.cc |
diff --git a/net/proxy/proxy_resolver_v8.cc b/net/proxy/proxy_resolver_v8.cc |
index c28dead6ce0036505a94ae9b0930bad937c497d1..8a993ad65653a71cf26ef0fa08d853fc5e30d1f5 100644 |
--- a/net/proxy/proxy_resolver_v8.cc |
+++ b/net/proxy/proxy_resolver_v8.cc |
@@ -736,4 +736,9 @@ v8::Isolate* ProxyResolverV8::GetDefaultIsolate() { |
v8::Isolate* ProxyResolverV8::g_default_isolate_ = NULL; |
+// static |
+void ProxyResolverV8::GetHeapStatistics(v8::HeapStatistics* heap_statistics) { |
+ GetDefaultIsolate()->GetHeapStatistics(heap_statistics); |
eroman
2013/03/05 00:40:45
I think this should be prepared to handle the case
Sven Panne
2013/03/05 07:22:39
Good point, I'll handle that case by zero-ing out
Sven Panne
2013/03/05 07:32:05
I was a bit too quick here: One can't modify HeapS
Sven Panne
2013/03/05 08:34:31
After talking to Jochen and re-thinking things aga
|
+} |
+ |
} // namespace net |