diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-04-19 17:12:49 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-04-19 17:12:49 -0400 |
commit | 08704b36f6850d2d2fd29bb984238f760215356a (patch) | |
tree | 6d55f10a180d2404684a4c0d5db510169490d0cf /indra/newview/llstartup.h | |
parent | 7fbf42dec8bae638b62676c280b3f042f9458057 (diff) |
startup phase tracking added to appearance metrics
Diffstat (limited to 'indra/newview/llstartup.h')
-rwxr-xr-x[-rw-r--r--] | indra/newview/llstartup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llstartup.h b/indra/newview/llstartup.h index 0a18ef1b2d..3754aaf966 100644..100755 --- a/indra/newview/llstartup.h +++ b/indra/newview/llstartup.h @@ -34,6 +34,8 @@ class LLEventPump; class LLStartupListener; class LLSLURL; +#include "llviewerstats.h" + // functions bool idle_startup(); void release_start_screen(); @@ -113,6 +115,7 @@ public: static bool startLLProxy(); // Initialize the SOCKS 5 proxy + static LLViewerStats::PhaseMap& getPhases() { return *sPhases; } private: static LLSLURL sStartSLURL; @@ -120,6 +123,7 @@ private: static EStartupState gStartupState; // Do not set directly, use LLStartup::setStartupState static boost::scoped_ptr<LLEventPump> sStateWatcher; static boost::scoped_ptr<LLStartupListener> sListener; + static boost::scoped_ptr<LLViewerStats::PhaseMap> sPhases; }; |