chromium/net/base/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_BASE_AUTH_H__
#define NET_BASE_AUTH_H__

#include <string>

#include "net/base/net_export.h"
#include "url/scheme_host_port.h"

namespace net {

// Holds info about an authentication challenge that we may want to display
// to the user.
class NET_EXPORT AuthChallengeInfo {};

// Authentication Credentials for an authentication credentials.
class NET_EXPORT AuthCredentials {};

// Authentication structures
enum AuthState {};

}  // namespace net

#endif  // NET_BASE_AUTH_H__