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

Side by Side Diff: runtime/bin/snapshot_in.cc

Issue 2628283002: Support spawnUri in app snapshots. (Closed)
Patch Set: const pointer Created 3 years, 11 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
« no previous file with comments | « runtime/bin/snapshot_empty.cc ('k') | runtime/lib/isolate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // clang-format off 5 // clang-format off
6 6
7 // This file is linked into the dart executable when it has a snapshot 7 // This file is linked into the dart executable when it has a snapshot
8 // linked into it. 8 // linked into it.
9 9
10 #if defined(_WIN32) 10 #if defined(_WIN32)
(...skipping 14 matching lines...) Expand all
25 static const uint8_t vm_isolate_snapshot_buffer_[] = { 25 static const uint8_t vm_isolate_snapshot_buffer_[] = {
26 %s 26 %s
27 }; 27 };
28 const uint8_t* vm_isolate_snapshot_buffer = vm_isolate_snapshot_buffer_; 28 const uint8_t* vm_isolate_snapshot_buffer = vm_isolate_snapshot_buffer_;
29 29
30 30
31 // The string on the next line will be filled in with the contents of the 31 // The string on the next line will be filled in with the contents of the
32 // generated snapshot binary file for a regular dart isolate. 32 // generated snapshot binary file for a regular dart isolate.
33 // This string forms the content of a regular dart isolate snapshot which is 33 // This string forms the content of a regular dart isolate snapshot which is
34 // loaded into an isolate when it is created. 34 // loaded into an isolate when it is created.
35 static const uint8_t isolate_snapshot_buffer_[] = { 35 static const uint8_t core_isolate_snapshot_buffer_[] = {
36 %s 36 %s
37 }; 37 };
38 const uint8_t* isolate_snapshot_buffer = isolate_snapshot_buffer_; 38 const uint8_t* core_isolate_snapshot_buffer = core_isolate_snapshot_buffer_;
39 39
40 } // namespace bin 40 } // namespace bin
41 } // namespace dart 41 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/bin/snapshot_empty.cc ('k') | runtime/lib/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698