#ifndef NET_HTTP_MOCK_ALLOW_URL_SECURITY_MANAGER_H_
#define NET_HTTP_MOCK_ALLOW_URL_SECURITY_MANAGER_H_
#include "net/http/url_security_manager.h"
namespace net {
class MockAllowURLSecurityManager : public URLSecurityManager {
public:
MockAllowURLSecurityManager();
virtual ~MockAllowURLSecurityManager();
virtual bool CanUseDefaultCredentials(const GURL& auth_origin) const OVERRIDE;
virtual bool CanDelegate(const GURL& auth_origin) const OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(MockAllowURLSecurityManager);
};
}
#endif