Adapt all consumers of HashSet and HashMap to the slightly-different APIs.
No functional changes intended. Tested and verified as working. Change-Id: Iaa67c2e5f0d9aff433ac7348e63e901a6a80e589 Reviewed-on: https://review.haiku-os.org/c/1043 Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
committed by
waddlesplash
parent
cc54b43e68
commit
de48af7a58
@@ -14,12 +14,6 @@
|
||||
#include <Referenceable.h>
|
||||
|
||||
|
||||
namespace BPrivate {
|
||||
template <class key, class value> class SynchronizedHashMap;
|
||||
class HashString;
|
||||
}
|
||||
|
||||
|
||||
class BUrlContext: public BReferenceable {
|
||||
public:
|
||||
BUrlContext();
|
||||
@@ -41,10 +35,11 @@ public:
|
||||
uint16 GetProxyPort();
|
||||
bool HasCertificateException(const BCertificate& certificate);
|
||||
|
||||
private:
|
||||
class BHttpAuthenticationMap;
|
||||
|
||||
private:
|
||||
BNetworkCookieJar fCookieJar;
|
||||
typedef BPrivate::SynchronizedHashMap<BPrivate::HashString,
|
||||
BHttpAuthentication*> BHttpAuthenticationMap;
|
||||
BHttpAuthenticationMap* fAuthenticationMap;
|
||||
typedef BObjectList<const BCertificate> BCertificateSet;
|
||||
BCertificateSet fCertificates;
|
||||
|
||||
Reference in New Issue
Block a user