// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_HTTP_HTTP_AUTH_HANDLER_H_ #define NET_HTTP_HTTP_AUTH_HANDLER_H_ #include <string> #include "net/base/completion_once_callback.h" #include "net/base/net_export.h" #include "net/http/http_auth.h" #include "net/log/net_log_with_source.h" #include "url/scheme_host_port.h" namespace net { class NetworkAnonymizationKey; class HttpAuthChallengeTokenizer; struct HttpRequestInfo; class SSLInfo; // HttpAuthHandler is the interface for the authentication schemes // (basic, digest, NTLM, Negotiate). // HttpAuthHandler objects are typically created by an HttpAuthHandlerFactory. // // HttpAuthHandlers and generally created and managed by an HttpAuthController, // which is the interaction point between the rest of net and the HTTP auth // code. // // For connection-based authentication, an HttpAuthHandler handles all rounds // related to using a single identity. If the identity is rejected, a new // HttpAuthHandler must be created. class NET_EXPORT_PRIVATE HttpAuthHandler { … }; } // namespace net #endif // NET_HTTP_HTTP_AUTH_HANDLER_H_