diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-03 21:45:06 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-03 21:45:06 +0000 |
commit | 37d39aa90e3121030f129407a82d53e50a85837d (patch) | |
tree | 1be396760ac136abcd0d1397b3d8b8a127c59bc0 /chrome/browser/views/url_picker.cc | |
parent | 340943147a0cae34ab3dd20f0b97def51abab24e (diff) | |
download | chromium_src-37d39aa90e3121030f129407a82d53e50a85837d.zip chromium_src-37d39aa90e3121030f129407a82d53e50a85837d.tar.gz chromium_src-37d39aa90e3121030f129407a82d53e50a85837d.tar.bz2 |
Remove the deprecated version of FixupURL and fix the callers.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/455022
Patch from tfarina.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33728 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/url_picker.cc')
-rw-r--r-- | chrome/browser/views/url_picker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/url_picker.cc b/chrome/browser/views/url_picker.cc index 0133dbd..190411d 100644 --- a/chrome/browser/views/url_picker.cc +++ b/chrome/browser/views/url_picker.cc @@ -313,5 +313,5 @@ void UrlPicker::OnDoubleClick() { } GURL UrlPicker::GetInputURL() const { - return GURL(URLFixerUpper::FixupURL(url_field_->text(), L"")); + return GURL(URLFixerUpper::FixupURL(UTF16ToUTF8(url_field_->text()), "")); } |