summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/browser_url_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/net/browser_url_util.cc')
-rw-r--r--chrome/browser/net/browser_url_util.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/net/browser_url_util.cc b/chrome/browser/net/browser_url_util.cc
index 9c8ab48..24747b2 100644
--- a/chrome/browser/net/browser_url_util.cc
+++ b/chrome/browser/net/browser_url_util.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -23,8 +23,8 @@ void WriteURLToClipboard(const GURL& url,
// 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, NULL));
+ WideToUTF16(net::FormatUrl(url, languages, net::kFormatUrlOmitNothing,
+ UnescapeRule::NONE, NULL, NULL, NULL));
ScopedClipboardWriter scw(clipboard);
scw.WriteURL(text);