Home | History | Annotate | Download | only in network

Lines Matching refs:protectionSpace

29 #include "ProtectionSpace.h"
35 static unsigned hash(const ProtectionSpace& protectionSpace)
38 protectionSpace.host().impl() ? protectionSpace.host().impl()->hash() : 0,
39 protectionSpace.port(),
40 protectionSpace.serverType(),
41 protectionSpace.authenticationScheme(),
42 protectionSpace.realm().impl() ? protectionSpace.realm().impl()->hash() : 0
47 if (protectionSpace.isProxy())
52 static bool equal(const ProtectionSpace& a, const ProtectionSpace& b) { return a == b; }
60 template<> struct HashTraits<WebCore::ProtectionSpace> : SimpleClassHashTraits<WebCore::ProtectionSpace> { };
63 template<> struct DefaultHash<WebCore::ProtectionSpace> {