Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Unified Diff: net/ntlm/ntlm.cc

Issue 2904633002: Replace NTLMv1 implementation with a functionally equivalent one.
Patch Set: Only return malloc memory from NtlmClient Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/ntlm/ntlm.cc
diff --git a/net/ntlm/ntlm.cc b/net/ntlm/ntlm.cc
index 14cc4bcdf64bf60a618e725068dc4bea9f75c543..27e2df8a252b361c045a89b781a83f4e8e545fa4 100644
--- a/net/ntlm/ntlm.cc
+++ b/net/ntlm/ntlm.cc
@@ -8,8 +8,10 @@
#include "base/logging.h"
#include "base/md5.h"
+#include "base/strings/utf_string_conversions.h"
asanka 2017/07/14 16:52:39 not used?
zentaro 2017/07/19 15:20:12 Done.
#include "net/ntlm/des.h"
#include "net/ntlm/md4.h"
+#include "net/ntlm/ntlm_buffer_reader.h"
asanka 2017/07/14 16:52:39 not used?
zentaro 2017/07/19 15:20:12 Done.
#include "net/ntlm/ntlm_buffer_writer.h"
namespace net {

Powered by Google App Engine
This is Rietveld 408576698