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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_util.cc

Issue 8552002: net: Move UnescapeRule into the net namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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: chrome/browser/safe_browsing/safe_browsing_util.cc
diff --git a/chrome/browser/safe_browsing/safe_browsing_util.cc b/chrome/browser/safe_browsing/safe_browsing_util.cc
index 910b94f9938289e37c2cc241c0220c4823785c07..efeb84ec5b9c034b0983845fb81674ea865d23a3 100644
--- a/chrome/browser/safe_browsing/safe_browsing_util.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_util.cc
@@ -226,8 +226,8 @@ std::string Unescape(const std::string& url) {
do {
old_unescaped_str = unescaped_str;
unescaped_str = net::UnescapeURLComponent(old_unescaped_str,
- UnescapeRule::CONTROL_CHARS | UnescapeRule::SPACES |
- UnescapeRule::URL_SPECIAL_CHARS);
+ net::UnescapeRule::CONTROL_CHARS | net::UnescapeRule::SPACES |
+ net::UnescapeRule::URL_SPECIAL_CHARS);
} while (unescaped_str != old_unescaped_str && ++loop_var <=
kMaxLoopIterations);
« no previous file with comments | « chrome/browser/policy/device_management_service_unittest.cc ('k') | chrome/browser/search_engines/template_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698