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

Unified Diff: src/gdb-jit.cc

Issue 10795074: Add a new API V8::SetJitCodeEventHandler to push code name and location to users such as profilers. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ready for review Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: src/gdb-jit.cc
diff --git a/src/gdb-jit.cc b/src/gdb-jit.cc
index d3cd44707c59150aaf261e519abb792b43d64f54..826b845070aff8eac0c5e0a85bccb9d0429dc405 100644
--- a/src/gdb-jit.cc
+++ b/src/gdb-jit.cc
@@ -46,12 +46,14 @@ class MachO;
class MachOSection;
typedef MachO DebugObject;
typedef MachOSection DebugSection;
-#else
+#elif !defined(WIN32) // DO NOT SUBMIT
danno 2012/07/25 13:50:42 What is this change for?
Sigurður Ásgeirsson 2012/07/25 14:38:35 Reverted, sorry.
#define __ELF
class ELF;
class ELFSection;
typedef ELF DebugObject;
typedef ELFSection DebugSection;
+#else
+typedef void DebugObject;
#endif
class Writer BASE_EMBEDDED {

Powered by Google App Engine
This is Rietveld 408576698