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

Side by Side Diff: src/heap.h

Issue 19753: Changed the debugger API to allow only one debug event listener to be registe... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « src/debug-delay.js ('k') | src/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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 V(Object, null_value) \ 107 V(Object, null_value) \
108 V(Object, true_value) \ 108 V(Object, true_value) \
109 V(Object, false_value) \ 109 V(Object, false_value) \
110 V(String, empty_string) \ 110 V(String, empty_string) \
111 V(FixedArray, empty_fixed_array) \ 111 V(FixedArray, empty_fixed_array) \
112 V(DescriptorArray, empty_descriptor_array) \ 112 V(DescriptorArray, empty_descriptor_array) \
113 V(Object, the_hole_value) \ 113 V(Object, the_hole_value) \
114 V(Map, neander_map) \ 114 V(Map, neander_map) \
115 V(JSObject, message_listeners) \ 115 V(JSObject, message_listeners) \
116 V(Proxy, prototype_accessors) \ 116 V(Proxy, prototype_accessors) \
117 V(JSObject, debug_event_listeners) \
118 V(Dictionary, code_stubs) \ 117 V(Dictionary, code_stubs) \
119 V(Dictionary, non_monomorphic_cache) \ 118 V(Dictionary, non_monomorphic_cache) \
120 V(Code, js_entry_code) \ 119 V(Code, js_entry_code) \
121 V(Code, js_construct_entry_code) \ 120 V(Code, js_construct_entry_code) \
122 V(Code, c_entry_code) \ 121 V(Code, c_entry_code) \
123 V(Code, c_entry_debug_break_code) \ 122 V(Code, c_entry_debug_break_code) \
124 V(FixedArray, number_string_cache) \ 123 V(FixedArray, number_string_cache) \
125 V(FixedArray, single_character_string_cache) \ 124 V(FixedArray, single_character_string_cache) \
126 V(FixedArray, natives_source_cache) \ 125 V(FixedArray, natives_source_cache) \
127 V(Object, keyed_lookup_cache) 126 V(Object, keyed_lookup_cache)
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1286 int marked_count_; 1285 int marked_count_;
1287 1286
1288 // The count from the end of the previous full GC. Will be zero if there 1287 // The count from the end of the previous full GC. Will be zero if there
1289 // was no previous full GC. 1288 // was no previous full GC.
1290 int previous_marked_count_; 1289 int previous_marked_count_;
1291 }; 1290 };
1292 1291
1293 } } // namespace v8::internal 1292 } } // namespace v8::internal
1294 1293
1295 #endif // V8_HEAP_H_ 1294 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/debug-delay.js ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698