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

Side by Side Diff: runtime/bin/loader.h

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 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/isolate_data.cc ('k') | runtime/bin/loader.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 #ifndef RUNTIME_BIN_LOADER_H_ 5 #ifndef RUNTIME_BIN_LOADER_H_
6 #define RUNTIME_BIN_LOADER_H_ 6 #define RUNTIME_BIN_LOADER_H_
7 7
8 #include "bin/isolate_data.h" 8 #include "bin/isolate_data.h"
9 #include "bin/thread.h"
9 #include "include/dart_api.h" 10 #include "include/dart_api.h"
10 #include "include/dart_native_api.h" 11 #include "include/dart_native_api.h"
11 #include "platform/assert.h" 12 #include "platform/assert.h"
12 #include "platform/globals.h" 13 #include "platform/globals.h"
13 #include "bin/thread.h"
14 14
15 namespace dart { 15 namespace dart {
16 namespace bin { 16 namespace bin {
17 17
18 class Loader { 18 class Loader {
19 public: 19 public:
20 explicit Loader(IsolateData* isolate_data); 20 explicit Loader(IsolateData* isolate_data);
21 ~Loader(); 21 ~Loader();
22 22
23 static void InitForSnapshot(const char* snapshot_uri); 23 static void InitForSnapshot(const char* snapshot_uri);
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 // This is the global callback for the native message handlers. 154 // This is the global callback for the native message handlers.
155 static void NativeMessageHandler(Dart_Port dest_port_id, 155 static void NativeMessageHandler(Dart_Port dest_port_id,
156 Dart_CObject* message); 156 Dart_CObject* message);
157 }; 157 };
158 158
159 } // namespace bin 159 } // namespace bin
160 } // namespace dart 160 } // namespace dart
161 161
162 #endif // RUNTIME_BIN_LOADER_H_ 162 #endif // RUNTIME_BIN_LOADER_H_
OLDNEW
« no previous file with comments | « runtime/bin/isolate_data.cc ('k') | runtime/bin/loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698