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

Unified Diff: ui/base/webui/web_ui_util.cc

Issue 1820333003: Remove most uses of UnescapeRule::URL_SPECIAL_CHARS outside net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Oops Created 4 years, 9 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: ui/base/webui/web_ui_util.cc
diff --git a/ui/base/webui/web_ui_util.cc b/ui/base/webui/web_ui_util.cc
index e83ea68f62615332c13e113b071fe1b26b40697c..773a2ea3ad71fabb91360cc7b4b148513933de27 100644
--- a/ui/base/webui/web_ui_util.cc
+++ b/ui/base/webui/web_ui_util.cc
@@ -91,9 +91,10 @@ bool ParseScaleFactor(const base::StringPiece& identifier,
void ParsePathAndScale(const GURL& url,
std::string* path,
float* scale_factor) {
- *path = net::UnescapeURLComponent(url.path().substr(1),
- (net::UnescapeRule::URL_SPECIAL_CHARS |
- net::UnescapeRule::SPACES));
+ *path = net::UnescapeURLComponent(
+ url.path().substr(1),
+ (net::UnescapeRule::URL_SPECIAL_CHARS_EXCEPT_PATH_SEPARATORS |
mmenke 2016/03/23 16:22:29 I don't think unescaping "/" and "\" gets us anyth
Evan Stade 2016/03/23 18:58:08 nit: there is an extra set of parens around the bi
mmenke 2016/03/23 19:06:30 I just kept the extra parens from before... I'll
+ net::UnescapeRule::SPACES));
if (scale_factor)
*scale_factor = 1.0f;

Powered by Google App Engine
This is Rietveld 408576698