Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: src/api.cc

Issue 53089: Fixed test memory leaks (Closed)
Patch Set: Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index 0b05b834fb4b0bb636adf1ba10d2a81d9e601ab1..21808c572fef833cec65ad25c8a913874ee4cb67 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -2272,6 +2272,12 @@ bool v8::V8::Initialize() {
}
+bool v8::V8::Dispose() {
+ i::V8::TearDown();
+ return true;
+}
+
+
const char* v8::V8::GetVersion() {
return "1.1.4 (candidate)";
}

Powered by Google App Engine
This is Rietveld 408576698