OLD | NEW |
(Empty) | |
| 1 #include "public/web/SnapshotCreator.h" |
| 2 |
| 3 #include "bindings/core/v8/V8SnapshotCreator.h" |
| 4 #include "v8/include/v8.h" |
| 5 |
| 6 namespace blink { |
| 7 |
| 8 void SnapshotCreator::TakeSnapshot(v8::SnapshotCreator* creator, int worldId) { |
| 9 V8SnapshotCreator::TakeSnapshot(creator, worldId); |
| 10 } |
| 11 |
| 12 v8::StartupData SnapshotCreator::SetUpSnapshotCreator( |
| 13 v8::SnapshotCreator* creator) { |
| 14 return V8SnapshotCreator::SetUpSnapshotCreator(creator); |
| 15 } |
| 16 |
| 17 v8::SnapshotCreator* SnapshotCreator::GetSnapshotCreator() { |
| 18 return V8SnapshotCreator::GetSnapshotCreator(); |
| 19 } |
| 20 |
| 21 v8::StartupData SnapshotCreator::Serialize(v8::Local<v8::Object> holder, |
| 22 int index, |
| 23 void* data) { |
| 24 return V8SnapshotCreator::Serialize(holder, index, data); |
| 25 } |
| 26 |
| 27 void SnapshotCreator::SetTakingSnapshot(bool value) { |
| 28 V8SnapshotCreator::SetTakingSnapshot(value); |
| 29 } |
| 30 |
| 31 } // namespace blink |
OLD | NEW |