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

Unified Diff: third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp

Issue 1878273002: Remove URLencode/URLdecode for the inner origin of blob: URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unescape constants in tests & code Created 4 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/weborigin/SecurityOrigin.cpp
diff --git a/third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp b/third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp
index 8d5b1a4f2948c679a7a0ec7bb7fc0351d5dd88aa..ff85b3442f23b285870bfb80f326cf6d56fdd9cb 100644
--- a/third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp
+++ b/third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp
@@ -75,7 +75,7 @@ KURL SecurityOrigin::extractInnerURL(const KURL& url)
return *url.innerURL();
// FIXME: Update this callsite to use the innerURL member function when
// we finish implementing it.
- return KURL(ParsedURLString, decodeURLEscapeSequences(url.path()));
+ return KURL(ParsedURLString, url.path());
}
void SecurityOrigin::setCache(SecurityOriginCache* originCache)

Powered by Google App Engine
This is Rietveld 408576698