| Index: chrome/browser/net/browser_url_util.cc
|
| ===================================================================
|
| --- chrome/browser/net/browser_url_util.cc (revision 31214)
|
| +++ chrome/browser/net/browser_url_util.cc (working copy)
|
| @@ -21,9 +21,9 @@
|
| // Unescaping path and query is not a good idea because other applications
|
| // may not encode non-ASCII characters in UTF-8. See crbug.com/2820.
|
| string16 text = url.SchemeIs(chrome::kMailToScheme) ?
|
| - ASCIIToUTF16(url.path()) :
|
| - WideToUTF16(net::FormatUrl(url, languages, false,
|
| - UnescapeRule::NONE, NULL, NULL));
|
| + ASCIIToUTF16(url.path()) :
|
| + WideToUTF16(net::FormatUrl(url, languages, false, UnescapeRule::NONE,
|
| + NULL, NULL, NULL));
|
|
|
| ScopedClipboardWriter scw(clipboard);
|
| scw.WriteURL(text);
|
|
|