| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 5ff8ccbae5145ce6be6a04848cc6a6ad9fe65f77..593aea641b2bf3b55022cac8ce18ea3a8e04e055 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -49,6 +49,7 @@
|
| #include "src/simulator.h"
|
| #include "src/snapshot/natives.h"
|
| #include "src/snapshot/snapshot.h"
|
| +#include "src/startup-data-util.h"
|
| #include "src/unicode-inl.h"
|
| #include "src/v8threads.h"
|
| #include "src/version.h"
|
| @@ -5398,11 +5399,23 @@ HeapObjectStatistics::HeapObjectStatistics()
|
| object_count_(0),
|
| object_size_(0) {}
|
|
|
| +
|
| bool v8::V8::InitializeICU(const char* icu_data_file) {
|
| return i::InitializeICU(icu_data_file);
|
| }
|
|
|
|
|
| +void v8::V8::InitializeExternalStartupData(const char* directory_path) {
|
| + i::InitializeExternalStartupData(directory_path);
|
| +}
|
| +
|
| +
|
| +void v8::V8::InitializeExternalStartupData(const char* natives_blob,
|
| + const char* snapshot_blob) {
|
| + i::InitializeExternalStartupData(natives_blob, snapshot_blob);
|
| +}
|
| +
|
| +
|
| const char* v8::V8::GetVersion() {
|
| return i::Version::GetVersion();
|
| }
|
|
|