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

Unified Diff: src/mksnapshot.cc

Issue 6440: Updated the snapshot builder to reflect the removed extensions in http://code... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mksnapshot.cc
===================================================================
--- src/mksnapshot.cc (revision 416)
+++ src/mksnapshot.cc (working copy)
@@ -159,12 +159,8 @@
v8::V8::SetCounterFunction(counter_callback);
v8::HandleScope scope;
- const int kExtensionCount = 5;
- const char* extension_list[kExtensionCount] = { "v8/print",
- "v8/load",
- "v8/quit",
- "v8/version",
- "v8/gc" };
+ const int kExtensionCount = 1;
+ const char* extension_list[kExtensionCount] = { "v8/gc" };
v8::ExtensionConfiguration extensions(kExtensionCount, extension_list);
v8::Context::New(&extensions);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698