OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_CONTEXT_MEASURE_H_ | 5 #ifndef V8_CONTEXT_MEASURE_H_ |
6 #define V8_CONTEXT_MEASURE_H_ | 6 #define V8_CONTEXT_MEASURE_H_ |
7 | 7 |
8 #include "src/snapshot/serialize.h" | 8 #include "src/snapshot/serialize.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 23 matching lines...) Expand all Loading... |
34 int recursion_depth_; | 34 int recursion_depth_; |
35 List<HeapObject*> deferred_objects_; | 35 List<HeapObject*> deferred_objects_; |
36 | 36 |
37 int count_; | 37 int count_; |
38 int size_; | 38 int size_; |
39 | 39 |
40 DisallowHeapAllocation no_gc_; | 40 DisallowHeapAllocation no_gc_; |
41 | 41 |
42 DISALLOW_COPY_AND_ASSIGN(ContextMeasure); | 42 DISALLOW_COPY_AND_ASSIGN(ContextMeasure); |
43 }; | 43 }; |
44 } | 44 } // namespace internal |
45 } // namespace v8::internal | 45 } // namespace v8 |
46 | 46 |
47 #endif // V8_CONTEXT_MEASURE_H_ | 47 #endif // V8_CONTEXT_MEASURE_H_ |
OLD | NEW |