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

Unified Diff: src/debug.h

Issue 753553002: Phantom references support internal fields (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Delete allocated objects in test to make memory sanitizer happy Created 6 years 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 side-by-side diff with in-line comments
Download patch
« include/v8.h ('K') | « src/api.cc ('k') | src/debug.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug.h
diff --git a/src/debug.h b/src/debug.h
index 4440d659dc18198e8c07bde4ca754efcbf7ab396..0ec9024436b9a5086320da709ef2b17557c9970e 100644
--- a/src/debug.h
+++ b/src/debug.h
@@ -447,8 +447,8 @@ class Debug {
Object** restarter_frame_function_pointer);
// Passed to MakeWeak.
- static void HandleWeakDebugInfo(
- const v8::WeakCallbackData<v8::Value, void>& data);
+ static void HandlePhantomDebugInfo(
+ const PhantomCallbackData<DebugInfoListNode>& data);
// Threading support.
char* ArchiveDebug(char* to);
@@ -572,6 +572,8 @@ class Debug {
void ClearStepNext();
void RemoveDebugInfoAndClearFromShared(Handle<DebugInfo> debug_info);
void RemoveDebugInfo(DebugInfo** debug_info);
+ void RemoveDebugInfo(DebugInfoListNode* node);
+ void RemoveDebugInfo(DebugInfoListNode* prev, DebugInfoListNode* node);
Handle<Object> CheckBreakPoints(Handle<Object> break_point);
bool CheckBreakPoint(Handle<Object> break_point_object);
« include/v8.h ('K') | « src/api.cc ('k') | src/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698