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

Unified Diff: sky/engine/core/inspector/ScriptCallFrame.h

Issue 727593004: Wire up the Inspector V8 Debugger (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Actually works Created 6 years, 1 month 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: sky/engine/core/inspector/ScriptCallFrame.h
diff --git a/sky/engine/core/inspector/ScriptCallFrame.h b/sky/engine/core/inspector/ScriptCallFrame.h
index 082c56de7da8669994e100159a7ff6139da8f2b6..0d4d626586be9cbe8de819ae9682b263113cea21 100644
--- a/sky/engine/core/inspector/ScriptCallFrame.h
+++ b/sky/engine/core/inspector/ScriptCallFrame.h
@@ -31,6 +31,7 @@
#ifndef ScriptCallFrame_h
#define ScriptCallFrame_h
+#include "core/InspectorTypeBuilder.h"
#include "wtf/Forward.h"
#include "wtf/text/WTFString.h"
@@ -48,6 +49,8 @@ public:
unsigned lineNumber() const { return m_lineNumber; }
unsigned columnNumber() const { return m_column; }
+ PassRefPtr<TypeBuilder::Console::CallFrame> buildInspectorObject() const;
+
private:
String m_functionName;
String m_scriptId;

Powered by Google App Engine
This is Rietveld 408576698