| Index: net/http/http_auth.cc
|
| ===================================================================
|
| --- net/http/http_auth.cc (revision 85283)
|
| +++ net/http/http_auth.cc (working copy)
|
| @@ -13,6 +13,7 @@
|
| #include "net/http/http_auth_handler_digest.h"
|
| #include "net/http/http_auth_handler_negotiate.h"
|
| #include "net/http/http_auth_handler_ntlm.h"
|
| +#include "net/http/http_request_headers.h"
|
| #include "net/http/http_response_headers.h"
|
| #include "net/http/http_util.h"
|
|
|
| @@ -142,9 +143,9 @@
|
| std::string HttpAuth::GetAuthorizationHeaderName(Target target) {
|
| switch (target) {
|
| case AUTH_PROXY:
|
| - return "Proxy-Authorization";
|
| + return HttpRequestHeaders::kProxyAuthorization;
|
| case AUTH_SERVER:
|
| - return "Authorization";
|
| + return HttpRequestHeaders::kAuthorization;
|
| default:
|
| NOTREACHED();
|
| return "";
|
|
|