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

Unified Diff: net/http/http_vary_data.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/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.

Powered by Google App Engine
This is Rietveld 408576698