| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "net/http/http_auth_handler_ntlm.h" | 5 #include "net/http/http_auth_handler_ntlm.h" |
| 6 | 6 |
| 7 #include <stdlib.h> | 7 #include <stdlib.h> |
| 8 // For gethostname | 8 // For gethostname |
| 9 #if defined(OS_POSIX) | 9 #if defined(OS_POSIX) |
| 10 #include <unistd.h> | 10 #include <unistd.h> |
| (...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 LogToken("out-token", *out_token, *out_token_len); | 698 LogToken("out-token", *out_token, *out_token_len); |
| 699 | 699 |
| 700 return rv; | 700 return rv; |
| 701 } | 701 } |
| 702 | 702 |
| 703 int HttpAuthHandlerNTLM::InitializeBeforeFirstChallenge() { | 703 int HttpAuthHandlerNTLM::InitializeBeforeFirstChallenge() { |
| 704 return OK; | 704 return OK; |
| 705 } | 705 } |
| 706 | 706 |
| 707 } // namespace net | 707 } // namespace net |
| OLD | NEW |