summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterregiondebugconsole.h
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-05-22 16:14:00 -0700
committerRider Linden <rider@lindenlab.com>2015-05-22 16:14:00 -0700
commit00b2b60a0c495656e1b8e0a20272c449eea49b3c (patch)
treee1a242a705e87fb433225fc46fad4f1fd8a8ecd7 /indra/newview/llfloaterregiondebugconsole.h
parente9257f034a51473cf09fa1c9f35f424f87e5f715 (diff)
Region debug console to coroutines.
Diffstat (limited to 'indra/newview/llfloaterregiondebugconsole.h')
-rwxr-xr-xindra/newview/llfloaterregiondebugconsole.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llfloaterregiondebugconsole.h b/indra/newview/llfloaterregiondebugconsole.h
index fd3af4152e..ee4bd79b17 100755
--- a/indra/newview/llfloaterregiondebugconsole.h
+++ b/indra/newview/llfloaterregiondebugconsole.h
@@ -38,7 +38,7 @@ class LLTextEditor;
typedef boost::signals2::signal<
void (const std::string& output)> console_reply_signal_t;
-class LLFloaterRegionDebugConsole : public LLFloater, public LLHTTPClient::Responder
+class LLFloaterRegionDebugConsole : public LLFloater
{
public:
LLFloaterRegionDebugConsole(LLSD const & key);
@@ -56,6 +56,10 @@ public:
private:
void onReplyReceived(const std::string& output);
+ void onAsyncConsoleError(LLSD result);
+ void onConsoleError(LLSD result);
+ void onConsoleSuccess(LLSD result);
+
boost::signals2::connection mReplySignalConnection;
};