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

Unified Diff: Source/core/loader/DocumentThreadableLoader.cpp

Issue 123003002: Make calls to AtomicString(const String&) explicit in loader/ and fetch/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 12 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: Source/core/loader/DocumentThreadableLoader.cpp
diff --git a/Source/core/loader/DocumentThreadableLoader.cpp b/Source/core/loader/DocumentThreadableLoader.cpp
index ada241d2fcf813096107373248f1123698ace438..37e58ea73192b8726d094b99d535b338d8fe0872 100644
--- a/Source/core/loader/DocumentThreadableLoader.cpp
+++ b/Source/core/loader/DocumentThreadableLoader.cpp
@@ -361,7 +361,7 @@ void DocumentThreadableLoader::preflightSuccess()
OwnPtr<ResourceRequest> actualRequest;
actualRequest.swap(m_actualRequest);
- actualRequest->setHTTPOrigin(securityOrigin()->toString());
+ actualRequest->setHTTPOrigin(AtomicString(securityOrigin()->toString()));
eseidel 2013/12/31 22:05:03 It seems securityOrigin might want a toAtomicStrin
Inactive 2013/12/31 22:47:25 Done.
clearResource();

Powered by Google App Engine
This is Rietveld 408576698