aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h
diff options
context:
space:
mode:
authorAurindam Jana <aurindam.jana@nokia.com>2011-12-07 09:38:40 +0100
committerAurindam Jana <aurindam.jana@nokia.com>2011-12-16 13:12:07 +0100
commita4b63e5796989a7c96367a9e9df2997fc35629c5 (patch)
treebbb570a4b565f64c757cf27aa2cd56027ad4605f /src/plugins/debugger/qml/qmlv8debuggerclientconstants.h
parent3e6cd71fe2307c4ae2f830b15a290cae843d8fdb (diff)
QmlV8DebuggerClient: Changes related to v8DebugService protocol
V8DebugService uses a different protocol. This fix now uses the new protocol. It also optimizes the number of debug requests made to retrieve debug information. Change-Id: I40d7b1d4ab0535831c6a19cadd9b48763934c1de Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmlv8debuggerclientconstants.h')
-rw-r--r--src/plugins/debugger/qml/qmlv8debuggerclientconstants.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h b/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h
index 0914c32efa..d3a6d1500e 100644
--- a/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h
+++ b/src/plugins/debugger/qml/qmlv8debuggerclientconstants.h
@@ -36,6 +36,12 @@
namespace Debugger {
namespace Internal {
+const float CURRENT_SUPPORTED_VERSION = 2.0;
+const char V8REQUEST[] = "v8request";
+const char V8MESSAGE[] = "v8message";
+const char SIGNALHANDLER[] = "signalhandler";
+const char CONNECT[] = "connect";
+const char INTERRUPT[] = "interrupt";
const char V8DEBUG[] = "V8DEBUG";
const char SEQ[] = "seq";
const char TYPE[] = "type";
@@ -88,9 +94,6 @@ const char LISTBREAKPOINTS[] = "listbreakpoints";
const char GARBAGECOLLECTOR[] = "gc";
//const char PROFILE[] = "profile";
-const char CONNECT[] = "connect";
-const char INTERRUPT[] = "interrupt";
-
const char REQUEST[] = "request";
const char IN[] = "in";
const char NEXT[] = "next";
@@ -98,6 +101,7 @@ const char OUT[] = "out";
const char FUNCTION[] = "function";
const char SCRIPT[] = "script";
+const char SCRIPTREGEXP[] = "scriptRegExp";
const char EVENT[] = "event";
const char ALL[] = "all";