summaryrefslogtreecommitdiff
path: root/indra/newview/lllogininstance.h
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-04-02 12:57:09 -0400
committerOz Linden <oz@lindenlab.com>2013-04-02 12:57:09 -0400
commitce0dbbd8a543a32e033eb15888259151ca113539 (patch)
tree1d5713dd1cf73826f07737dd248d3e51aa1f1b57 /indra/newview/lllogininstance.h
parent060a76daa695e8619db48bf940ea3997668702d0 (diff)
Add reporting of last_exec_duration
(and clean up logic around multiple instances)
Diffstat (limited to 'indra/newview/lllogininstance.h')
-rw-r--r--indra/newview/lllogininstance.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/lllogininstance.h b/indra/newview/lllogininstance.h
index 83191e50bd..b0247da7c8 100644
--- a/indra/newview/lllogininstance.h
+++ b/indra/newview/lllogininstance.h
@@ -66,6 +66,7 @@ public:
void setSkipOptionalUpdate(bool state) { mSkipOptionalUpdate = state; }
void setSerialNumber(const std::string& sn) { mSerialNumber = sn; }
void setLastExecEvent(int lee) { mLastExecEvent = lee; }
+ void setLastExecDuration(S32 duration) { mLastExecDuration = duration; }
void setPlatformInfo(const std::string platform, const std::string platform_version);
void setNotificationsInterface(LLNotificationsInterface* ni) { mNotifications = ni; }
@@ -100,6 +101,7 @@ private:
F64 mTransferRate;
std::string mSerialNumber;
int mLastExecEvent;
+ S32 mLastExecDuration;
std::string mPlatform;
std::string mPlatformVersion;
UpdaterLauncherCallback mUpdaterLauncher;