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

Side by Side Diff: src/heap/heap.h

Issue 1909433003: Remove support for Object.observe (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 4 years, 8 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 | « src/heap-symbols.h ('k') | src/heap/heap.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 V(FixedArray, natives_source_cache, NativesSourceCache) \ 167 V(FixedArray, natives_source_cache, NativesSourceCache) \
168 V(FixedArray, experimental_natives_source_cache, \ 168 V(FixedArray, experimental_natives_source_cache, \
169 ExperimentalNativesSourceCache) \ 169 ExperimentalNativesSourceCache) \
170 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ 170 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \
171 V(FixedArray, experimental_extra_natives_source_cache, \ 171 V(FixedArray, experimental_extra_natives_source_cache, \
172 ExperimentalExtraNativesSourceCache) \ 172 ExperimentalExtraNativesSourceCache) \
173 V(Script, empty_script, EmptyScript) \ 173 V(Script, empty_script, EmptyScript) \
174 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 174 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
175 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \ 175 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \
176 V(Cell, undefined_cell, UndefinedCell) \ 176 V(Cell, undefined_cell, UndefinedCell) \
177 V(JSObject, observation_state, ObservationState) \
178 V(Object, symbol_registry, SymbolRegistry) \ 177 V(Object, symbol_registry, SymbolRegistry) \
179 V(Object, script_list, ScriptList) \ 178 V(Object, script_list, ScriptList) \
180 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 179 V(SeededNumberDictionary, empty_slow_element_dictionary, \
181 EmptySlowElementDictionary) \ 180 EmptySlowElementDictionary) \
182 V(FixedArray, materialized_objects, MaterializedObjects) \ 181 V(FixedArray, materialized_objects, MaterializedObjects) \
183 V(FixedArray, microtask_queue, MicrotaskQueue) \ 182 V(FixedArray, microtask_queue, MicrotaskQueue) \
184 V(TypeFeedbackVector, dummy_vector, DummyVector) \ 183 V(TypeFeedbackVector, dummy_vector, DummyVector) \
185 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ 184 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \
186 V(FixedArray, detached_contexts, DetachedContexts) \ 185 V(FixedArray, detached_contexts, DetachedContexts) \
187 V(ArrayList, retained_maps, RetainedMaps) \ 186 V(ArrayList, retained_maps, RetainedMaps) \
(...skipping 2462 matching lines...) Expand 10 before | Expand all | Expand 10 after
2650 friend class LargeObjectSpace; 2649 friend class LargeObjectSpace;
2651 friend class NewSpace; 2650 friend class NewSpace;
2652 friend class PagedSpace; 2651 friend class PagedSpace;
2653 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); 2652 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
2654 }; 2653 };
2655 2654
2656 } // namespace internal 2655 } // namespace internal
2657 } // namespace v8 2656 } // namespace v8
2658 2657
2659 #endif // V8_HEAP_HEAP_H_ 2658 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/heap-symbols.h ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698