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

Side by Side Diff: third_party/WebKit/Source/web/SnapshotCreator.cpp

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Work for some comments Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 #include "public/web/SnapshotCreator.h"
haraken 2017/05/20 19:10:03 Add a copyright.
peria 2017/05/30 08:25:44 Done.
2
3 #include "bindings/core/v8/V8SnapshotCreator.h"
4 #include "v8/include/v8.h"
5
6 namespace blink {
7
8 v8::StartupData SnapshotCreator::TakeSnapshot(v8::SnapshotCreator* creator) {
9 return V8SnapshotCreator::TakeSnapshot(creator);
10 }
11
12 v8::SnapshotCreator* SnapshotCreator::GetSnapshotCreator() {
13 return V8SnapshotCreator::GetSnapshotCreator();
14 }
15
16 void SnapshotCreator::SetTakingSnapshot(bool value) {
17 V8SnapshotCreator::SetTakingSnapshot(value);
18 }
19
20 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698