// Copyright 2018 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_MECHANISM_H_ #define NET_HTTP_HTTP_AUTH_MECHANISM_H_ #include <memory> #include "base/functional/callback_forward.h" #include "net/base/completion_once_callback.h" #include "net/base/net_export.h" #include "net/http/http_auth.h" namespace net { class AuthCredentials; class HttpAuthChallengeTokenizer; class HttpAuthPreferences; class NetLogWithSource; class NET_EXPORT_PRIVATE HttpAuthMechanism { … }; // Factory is just a callback that returns a unique_ptr. HttpAuthMechanismFactory; } // namespace net #endif // NET_HTTP_HTTP_AUTH_MECHANISM_H_