aboutsummaryrefslogtreecommitdiffstats
path: root/support/hololens/ServoApp/Devtools/Client.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/hololens/ServoApp/Devtools/Client.h')
-rw-r--r--support/hololens/ServoApp/Devtools/Client.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/support/hololens/ServoApp/Devtools/Client.h b/support/hololens/ServoApp/Devtools/Client.h
index 3764c201d46..67e11c3fe79 100644
--- a/support/hololens/ServoApp/Devtools/Client.h
+++ b/support/hololens/ServoApp/Devtools/Client.h
@@ -26,6 +26,7 @@ public:
void Run();
void Stop();
void Send(JsonObject);
+ void Evaluate(hstring);
private:
hstring mPort;
@@ -46,6 +47,8 @@ private:
void HandlePageError(JsonObject);
void HandleConsoleMessage(JsonObject);
void HandleNonHandledMessage(JsonObject);
+ void HandleEvaluationResult(JsonObject);
+ std::optional<JsonValue> mConsoleActor;
};
class DevtoolsDelegate {