| Index: net/http/http_vary_data.cc
|
| diff --git a/net/http/http_vary_data.cc b/net/http/http_vary_data.cc
|
| index f102058cdefaf280e8456342f81c2e741af908eb..ff2e263f1db75275c60d2758c5eef8551a91e6dd 100644
|
| --- a/net/http/http_vary_data.cc
|
| +++ b/net/http/http_vary_data.cc
|
| @@ -89,14 +89,14 @@ bool HttpVaryData::MatchesRequest(
|
| NOTREACHED();
|
| return false;
|
| }
|
| - return memcmp(&new_vary_data.request_digest_, &request_digest_,
|
| + return memcmp(&new_vary_data.request_digest_,
|
| + &request_digest_,
|
| sizeof(request_digest_)) == 0;
|
| }
|
|
|
| // static
|
| -std::string HttpVaryData::GetRequestValue(
|
| - const HttpRequestInfo& request_info,
|
| - const std::string& request_header) {
|
| +std::string HttpVaryData::GetRequestValue(const HttpRequestInfo& request_info,
|
| + const std::string& request_header) {
|
| // Unfortunately, we do not have access to all of the request headers at this
|
| // point. Most notably, we do not have access to an Authorization header if
|
| // one will be added to the request.
|
|
|