diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-22 03:59:59 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-22 03:59:59 +0000 |
commit | f05f2c2743cce01584649d33a6883a53dffd7054 (patch) | |
tree | b204834a86221e07883a3b51384394aa06e5ad12 /chrome | |
parent | cdf9d6391de806308b770d73eddc843bb21a373a (diff) | |
download | chromium_src-f05f2c2743cce01584649d33a6883a53dffd7054.zip chromium_src-f05f2c2743cce01584649d33a6883a53dffd7054.tar.gz chromium_src-f05f2c2743cce01584649d33a6883a53dffd7054.tar.bz2 |
Fix clang build?
BUG=none
TEST=none
TBR=thakis@chromium.org
Review URL: http://codereview.chromium.org/6048008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69930 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/autocomplete/autocomplete.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autocomplete/autocomplete.cc b/chrome/browser/autocomplete/autocomplete.cc index db114e0..6bb8ad2 100644 --- a/chrome/browser/autocomplete/autocomplete.cc +++ b/chrome/browser/autocomplete/autocomplete.cc @@ -194,7 +194,7 @@ AutocompleteInput::Type AutocompleteInput::Parse( Type http_type = Parse(http_scheme_prefix + text, desired_tld, &http_parts, &http_scheme, &http_canonicalized_url); - DCHECK_EQ(http_scheme, std::wstring(L"http")); + DCHECK_EQ("http", WideToUTF8(http_scheme)); if ((http_type == URL || http_type == REQUESTED_URL) && http_parts.username.is_nonempty() && |