| 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);
|
|
|
|
|