| Index: net/http/http_log_util.cc
|
| diff --git a/net/http/http_log_util.cc b/net/http/http_log_util.cc
|
| index 500f2209da24b4e5457ff82005ba6dec396622e1..5ee141e2afcfac9ed7eb22c7cd9ff39f333282bf 100644
|
| --- a/net/http/http_log_util.cc
|
| +++ b/net/http/http_log_util.cc
|
| @@ -7,6 +7,7 @@
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| +#include "net/http/http_auth.h"
|
| #include "net/http/http_auth_challenge_tokenizer.h"
|
| #include "net/http/http_util.h"
|
|
|
| @@ -27,7 +28,7 @@ bool ShouldRedactChallenge(HttpAuthChallengeTokenizer* challenge) {
|
|
|
| // Ignore Basic and Digest authentication challenges, as they contain
|
| // public information.
|
| - if (scheme == "basic" || scheme == "digest")
|
| + if (scheme == kBasicAuthScheme || scheme == kDigestAuthScheme)
|
| return false;
|
|
|
| return true;
|
|
|