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

Side by Side Diff: runtime/vm/kernel.h

Issue 3001103002: Do not qualify with dart:: except where necessary (Closed)
Patch Set: Created 3 years, 4 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/vm/bootstrap_nocore.cc ('k') | runtime/vm/kernel_binary_flowgraph.h » ('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_VM_KERNEL_H_ 5 #ifndef RUNTIME_VM_KERNEL_H_
6 #define RUNTIME_VM_KERNEL_H_ 6 #define RUNTIME_VM_KERNEL_H_
7 7
8 #if !defined(DART_PRECOMPILED_RUNTIME) 8 #if !defined(DART_PRECOMPILED_RUNTIME)
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 #include "vm/allocation.h" 10 #include "vm/allocation.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 // The offset from the start of the binary to the canonical name table. 76 // The offset from the start of the binary to the canonical name table.
77 intptr_t name_table_offset_; 77 intptr_t name_table_offset_;
78 78
79 const uint8_t* kernel_data_; 79 const uint8_t* kernel_data_;
80 intptr_t kernel_data_size_; 80 intptr_t kernel_data_size_;
81 81
82 DISALLOW_COPY_AND_ASSIGN(Program); 82 DISALLOW_COPY_AND_ASSIGN(Program);
83 }; 83 };
84 84
85 ParsedFunction* ParseStaticFieldInitializer(Zone* zone, 85 ParsedFunction* ParseStaticFieldInitializer(Zone* zone, const Field& field);
86 const dart::Field& field);
87 86
88 } // namespace kernel 87 } // namespace kernel
89 88
90 kernel::Program* ReadPrecompiledKernelFromBuffer(const uint8_t* buffer, 89 kernel::Program* ReadPrecompiledKernelFromBuffer(const uint8_t* buffer,
91 intptr_t buffer_length); 90 intptr_t buffer_length);
92 91
93 } // namespace dart 92 } // namespace dart
94 93
95 #endif // !defined(DART_PRECOMPILED_RUNTIME) 94 #endif // !defined(DART_PRECOMPILED_RUNTIME)
96 #endif // RUNTIME_VM_KERNEL_H_ 95 #endif // RUNTIME_VM_KERNEL_H_
OLDNEW
« no previous file with comments | « runtime/vm/bootstrap_nocore.cc ('k') | runtime/vm/kernel_binary_flowgraph.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698