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

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

Issue 1170503003: Remove resource type-specific fetching logic from ResourceFetcher (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/FrameFetchContext.cpp
diff --git a/Source/core/loader/FrameFetchContext.cpp b/Source/core/loader/FrameFetchContext.cpp
index 2501a98aa347ef02edd9a98b3d57dce76dc00120..7c125cc36e3f0d421fffdf4422447b3ab180780b 100644
--- a/Source/core/loader/FrameFetchContext.cpp
+++ b/Source/core/loader/FrameFetchContext.cpp
@@ -573,11 +573,6 @@ SecurityOrigin* FrameFetchContext::securityOrigin() const
return m_document ? m_document->securityOrigin() : nullptr;
}
-String FrameFetchContext::charset() const
-{
- return m_document ? m_document->charset().string() : String();
-}
-
void FrameFetchContext::upgradeInsecureRequest(FetchRequest& fetchRequest)
{
if (!m_document)

Powered by Google App Engine
This is Rietveld 408576698