chromium/net/http/http_auth.h

// 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_H_
#define NET_HTTP_HTTP_AUTH_H_

#include <memory>
#include <set>
#include <string>

#include "base/values.h"
#include "net/base/auth.h"
#include "net/base/net_export.h"

template <class T> class scoped_refptr;

namespace url {
class SchemeHostPort;
}

namespace net {

class HttpAuthHandler;
class HttpAuthHandlerFactory;
class HttpResponseHeaders;
class HostResolver;
class NetLogWithSource;
class NetworkAnonymizationKey;
class SSLInfo;

// Utility class for http authentication.
class NET_EXPORT_PRIVATE HttpAuth {};

}  // namespace net

#endif  // NET_HTTP_HTTP_AUTH_H_