| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ | 5 #ifndef NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ |
| 6 #define NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ | 6 #define NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 Factory(); | 21 Factory(); |
| 22 virtual ~Factory(); | 22 virtual ~Factory(); |
| 23 | 23 |
| 24 virtual int CreateAuthHandler( | 24 virtual int CreateAuthHandler( |
| 25 HttpAuthChallengeTokenizer* challenge, | 25 HttpAuthChallengeTokenizer* challenge, |
| 26 HttpAuth::Target target, | 26 HttpAuth::Target target, |
| 27 const GURL& origin, | 27 const GURL& origin, |
| 28 CreateReason reason, | 28 CreateReason reason, |
| 29 int digest_nonce_count, | 29 int digest_nonce_count, |
| 30 const BoundNetLog& net_log, | 30 const BoundNetLog& net_log, |
| 31 scoped_ptr<HttpAuthHandler>* handler) OVERRIDE; | 31 scoped_ptr<HttpAuthHandler>* handler) override; |
| 32 }; | 32 }; |
| 33 | 33 |
| 34 virtual HttpAuth::AuthorizationResult HandleAnotherChallenge( | 34 virtual HttpAuth::AuthorizationResult HandleAnotherChallenge( |
| 35 HttpAuthChallengeTokenizer* challenge) OVERRIDE; | 35 HttpAuthChallengeTokenizer* challenge) override; |
| 36 | 36 |
| 37 protected: | 37 protected: |
| 38 virtual bool Init(HttpAuthChallengeTokenizer* challenge) OVERRIDE; | 38 virtual bool Init(HttpAuthChallengeTokenizer* challenge) override; |
| 39 | 39 |
| 40 virtual int GenerateAuthTokenImpl(const AuthCredentials* credentials, | 40 virtual int GenerateAuthTokenImpl(const AuthCredentials* credentials, |
| 41 const HttpRequestInfo* request, | 41 const HttpRequestInfo* request, |
| 42 const CompletionCallback& callback, | 42 const CompletionCallback& callback, |
| 43 std::string* auth_token) OVERRIDE; | 43 std::string* auth_token) override; |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 virtual ~HttpAuthHandlerBasic() {} | 46 virtual ~HttpAuthHandlerBasic() {} |
| 47 | 47 |
| 48 bool ParseChallenge(HttpAuthChallengeTokenizer* challenge); | 48 bool ParseChallenge(HttpAuthChallengeTokenizer* challenge); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 } // namespace net | 51 } // namespace net |
| 52 | 52 |
| 53 #endif // NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ | 53 #endif // NET_HTTP_HTTP_AUTH_HANDLER_BASIC_H_ |
| OLD | NEW |