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

Side by Side Diff: src/snapshot-empty.cc

Issue 791723004: Reland "Use same blob format for internal and external snapshots." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 6 years 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
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Used for building without snapshots. 5 // Used for building without snapshots.
6 6
7 #include "src/v8.h" 7 #include "src/v8.h"
8 8
9 #include "src/snapshot.h" 9 #include "src/snapshot.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 13
14 const byte Snapshot::data_[] = { 0 }; 14 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
15 const int Snapshot::size_ = 0; 15 // Dummy implementations of Set*FromFile(..) APIs.
16 const byte Snapshot::context_data_[] = { 0 }; 16 //
17 const int Snapshot::context_size_ = 0; 17 // These are meant for use with snapshot-external.cc. Should this file
18 // be compiled with those options we just supply these dummy implementations
19 // below. This happens when compiling the mksnapshot utility.
20 void SetNativesFromFile(StartupData* data) { CHECK(false); }
21 void SetSnapshotFromFile(StartupData* data) { CHECK(false); }
22 #endif // V8_USE_EXTERNAL_STARTUP_DATA
18 23
24
25 const v8::StartupData Snapshot::SnapshotBlob() {
26 return {NULL, 0};
27 }
19 } } // namespace v8::internal 28 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/snapshot-common.cc ('k') | src/snapshot-external.cc » ('j') | src/snapshot-external.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698