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

Side by Side Diff: sky/engine/bindings-dart/snapshot.cc.tmpl

Issue 894613002: Dart: 2++ = 3 (Closed) Base URL: https://github.com/eseidel/skydart.git@master
Patch Set: sync Created 5 years, 10 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
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 // This file is linked into the dart executable when it has a snapshot 5 // This file is linked into the dart executable when it has a snapshot
6 // linked into it. 6 // linked into it.
7 7
8 #include <inttypes.h> 8 #include <inttypes.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 #include <stddef.h> 10 #include <stddef.h>
11 11
12 namespace mojo { 12 namespace mojo {
13 namespace dart { 13 namespace dart {
14 14
15 // The string on the next line will be filled in with the contents of the 15 // The string on the next line will be filled in with the contents of the
16 // generated snapshot binary file. 16 // generated snapshot binary file.
17 // This string forms the content of a snapshot which is loaded in by dart. 17 // This string forms the content of a snapshot which is loaded in by dart.
18 static const uint8_t snapshot_buffer_[] = { % s}; 18 static const uint8_t snapshot_buffer_[] = { % s};
19 const uint8_t* snapshot_buffer = snapshot_buffer_; 19 const uint8_t* snapshot_buffer = snapshot_buffer_;
20 20
21 } // namespace dart 21 } // namespace dart
22 } // namespace mojo 22 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698