diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-19 18:32:30 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-19 18:32:30 +0000 |
commit | 400b133f204e817bb87e357cf2cb02056f8eb0a4 (patch) | |
tree | 7e7165352b123dc93482562e04c37131f84ae3f8 /net/base/escape.h | |
parent | 3705f8e68cb154810dba9f9e05b3f9fb2a9155b5 (diff) | |
download | chromium_src-400b133f204e817bb87e357cf2cb02056f8eb0a4.zip chromium_src-400b133f204e817bb87e357cf2cb02056f8eb0a4.tar.gz chromium_src-400b133f204e817bb87e357cf2cb02056f8eb0a4.tar.bz2 |
Remove wstring from TemplateURL and friends.
Re-landing r71485 (which was reverted in r71500).
BUG=23581
TEST=no visible changes; all tests pass
Review URL: http://codereview.chromium.org/6278007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/escape.h')
-rw-r--r-- | net/base/escape.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/escape.h b/net/base/escape.h index 39447a5..faa7bd3 100644 --- a/net/base/escape.h +++ b/net/base/escape.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -125,8 +125,8 @@ std::string EscapeQueryParamValue(const std::string& text, bool use_plus); bool EscapeQueryParamValue(const string16& text, const char* codepage, bool use_plus, string16* escaped); -// A specialized version of EscapeQueryParamValue for wide strings that +// A specialized version of EscapeQueryParamValue for string16s that // assumes the codepage is UTF8. This is provided as a convenience. -std::wstring EscapeQueryParamValueUTF8(const std::wstring& text, bool use_plus); +string16 EscapeQueryParamValueUTF8(const string16& text, bool use_plus); #endif // NET_BASE_ESCAPE_H_ |