diff --git a/indra/newview/llviewerassetstorage.cpp b/indra/newview/llviewerassetstorage.cpp index 71507b56085e3cf5b19cc1fecfb2464a08cf5059..b9bdc4c06f3a10f328d14f8ae005d25428f4be34 100644 --- a/indra/newview/llviewerassetstorage.cpp +++ b/indra/newview/llviewerassetstorage.cpp @@ -400,7 +400,7 @@ void LLViewerAssetStorage::queueRequestHttp( LLViewerAssetStatsFF::record_enqueue(atype, with_http, is_temp); LLCoprocedureManager::instance().enqueueCoprocedure("AssetStorage","LLViewerAssetStorage::assetRequestCoro", - boost::bind(&LLViewerAssetStorage::assetRequestCoro, this, _1, req, uuid, atype, callback, user_data)); + boost::bind(&LLViewerAssetStorage::assetRequestCoro, this, req, uuid, atype, callback, user_data)); } } @@ -434,9 +434,8 @@ struct LLScopedIncrement }; void LLViewerAssetStorage::assetRequestCoro( - LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t &defaultHttpAdapter, // not used LLViewerAssetRequest *req, - const LLUUID& uuid, + const LLUUID uuid, LLAssetType::EType atype, LLGetAssetCallback callback, void *user_data) diff --git a/indra/newview/llviewerassetstorage.h b/indra/newview/llviewerassetstorage.h index a32b3bb7000a3b1e114c0ab931dc632dc234e2d0..50131682e7f98f7a3f1d476ce7b4714564bf004d 100644 --- a/indra/newview/llviewerassetstorage.h +++ b/indra/newview/llviewerassetstorage.h @@ -83,10 +83,8 @@ class LLViewerAssetStorage : public LLAssetStorage void capsRecvForRegion(const LLUUID& region_id, std::string pumpname); - void assetRequestCoro( - LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t &defaultHttpAdapter, - LLViewerAssetRequest *req, - const LLUUID& uuid, + void assetRequestCoro(LLViewerAssetRequest *req, + const LLUUID uuid, LLAssetType::EType atype, void (*callback) (LLVFS *vfs, const LLUUID&, LLAssetType::EType, void *, S32, LLExtStat), void *user_data);