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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.cpp

Issue 2806263002: Rename blink::AtomicString::Lower() to DeprecatedLower(). (Closed)
Patch Set: Update a comment Created 3 years, 8 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: third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.cpp
diff --git a/third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.cpp b/third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.cpp
index 06d0234b67c6af8bcbd42bf367d70bd62bff85d5..d15cf03b20e505edb05e4c70ea793e6d68a1ed17 100644
--- a/third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.cpp
+++ b/third_party/WebKit/Source/platform/loader/fetch/CrossOriginAccessControl.cpp
@@ -68,7 +68,7 @@ static AtomicString CreateAccessControlRequestHeadersHeader(
// Access-Control-Request-Headers header.
continue;
}
- filtered_headers.push_back(header.key.Lower());
+ filtered_headers.push_back(header.key.DeprecatedLower());
}
if (!filtered_headers.size())
return g_null_atom;

Powered by Google App Engine
This is Rietveld 408576698