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

Side by Side Diff: sky/engine/bindings2/snapshot.cc.tmpl

Issue 860273005: Revert "Dart: 2++ = 3" (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « sky/engine/bindings2/snapshot.dart ('k') | sky/engine/core/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // This file is linked into the dart executable when it has a snapshot
6 // linked into it.
7
8 #include <inttypes.h>
9 #include <stdint.h>
10 #include <stddef.h>
11
12 namespace mojo {
13 namespace dart {
14
15 // The string on the next line will be filled in with the contents of the
16 // generated snapshot binary file.
17 // This string forms the content of a snapshot which is loaded in by dart.
18 static const uint8_t snapshot_buffer_[] = { % s};
19 const uint8_t* snapshot_buffer = snapshot_buffer_;
20
21 } // namespace dart
22 } // namespace mojo
OLDNEW
« no previous file with comments | « sky/engine/bindings2/snapshot.dart ('k') | sky/engine/core/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698