diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-04-28 16:10:24 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-04-28 16:10:24 -0400 |
commit | 9dfb5614e640b3350d89500b7d7486e2065ed7e2 (patch) | |
tree | 26aa40c462e9705fa01c4248e90a02f0c01a6d34 /indra/newview/llviewerassetstorage.h | |
parent | b7b8d6e1aedeac1dfdfcc9200024bbcc8e2dacae (diff) |
MAINT-7343 - moved asset downloads to use coprocedure pools, which should reduce the size of potential memory spikes
Diffstat (limited to 'indra/newview/llviewerassetstorage.h')
-rw-r--r-- | indra/newview/llviewerassetstorage.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llviewerassetstorage.h b/indra/newview/llviewerassetstorage.h index 8a58241378..a32b3bb700 100644 --- a/indra/newview/llviewerassetstorage.h +++ b/indra/newview/llviewerassetstorage.h @@ -28,6 +28,7 @@ #define LLVIEWERASSETSTORAGE_H #include "llassetstorage.h" +#include "llcorehttputil.h" class LLVFile; @@ -82,7 +83,9 @@ protected: void capsRecvForRegion(const LLUUID& region_id, std::string pumpname); - void assetRequestCoro(LLViewerAssetRequest *req, + void assetRequestCoro( + LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t &defaultHttpAdapter, + LLViewerAssetRequest *req, const LLUUID& uuid, LLAssetType::EType atype, void (*callback) (LLVFS *vfs, const LLUUID&, LLAssetType::EType, void *, S32, LLExtStat), |