summaryrefslogtreecommitdiff
path: root/chromium/net/ntlm
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-20 13:40:20 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-22 12:41:23 +0000
commit7961cea6d1041e3e454dae6a1da660b453efd238 (patch)
treec0eeb4a9ff9ba32986289c1653d9608e53ccb444 /chromium/net/ntlm
parentb7034d0803538058e5c9d904ef03cf5eab34f6ef (diff)
downloadqtwebengine-chromium-7961cea6d1041e3e454dae6a1da660b453efd238.tar.gz
BASELINE: Update Chromium to 78.0.3904.130
Change-Id: If185e0c0061b3437531c97c9c8c78f239352a68b Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/net/ntlm')
-rw-r--r--chromium/net/ntlm/ntlm_client.h2
-rw-r--r--chromium/net/ntlm/ntlm_client_fuzzer.cc3
2 files changed, 3 insertions, 2 deletions
diff --git a/chromium/net/ntlm/ntlm_client.h b/chromium/net/ntlm/ntlm_client.h
index 16f4833a4bf..622a9e929df 100644
--- a/chromium/net/ntlm/ntlm_client.h
+++ b/chromium/net/ntlm/ntlm_client.h
@@ -65,7 +65,7 @@ class NET_EXPORT_PRIVATE NtlmClient {
// optionally omit the '@domain.com' part.
// |hostname| can be a short NetBIOS name or an FQDN, however the server will
// only inspect this field if the default domain policy is to restrict NTLM.
- // In this case the hostname will be compared to a whitelist stored in this
+ // In this case the hostname will be compared to an allowlist stored in this
// group policy [1].
// |channel_bindings| is a string supplied out of band (usually from a web
// browser) and is a (21+sizeof(hash)) byte ASCII string, where 'hash' is
diff --git a/chromium/net/ntlm/ntlm_client_fuzzer.cc b/chromium/net/ntlm/ntlm_client_fuzzer.cc
index 0990e3ce4a2..c2e43dec8a9 100644
--- a/chromium/net/ntlm/ntlm_client_fuzzer.cc
+++ b/chromium/net/ntlm/ntlm_client_fuzzer.cc
@@ -5,13 +5,14 @@
#include <stddef.h>
#include <stdint.h>
+#include <fuzzer/FuzzedDataProvider.h>
+
#include <string>
#include <vector>
#include "base/containers/span.h"
#include "net/ntlm/ntlm_client.h"
#include "net/ntlm/ntlm_test_data.h"
-#include "third_party/libFuzzer/src/utils/FuzzedDataProvider.h"
base::string16 ConsumeRandomLengthString16(FuzzedDataProvider& data_provider,
size_t max_chars) {