diff options
author | jeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 00:39:33 +0000 |
---|---|---|
committer | jeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 00:39:33 +0000 |
commit | 84e1472c2c3c19df36ca784c959c5310e2472ede (patch) | |
tree | e5ea87dc411f6f1cd154c001c4c49151c68337f1 /net | |
parent | 2cbc793935eaaf2c5f9adebd35e2e0b68c8fa7e7 (diff) | |
download | chromium_src-84e1472c2c3c19df36ca784c959c5310e2472ede.zip chromium_src-84e1472c2c3c19df36ca784c959c5310e2472ede.tar.gz chromium_src-84e1472c2c3c19df36ca784c959c5310e2472ede.tar.bz2 |
Remove obsolete TODOs. The referred bug has been closed for a while.
TEST=None
BUG=0
Review URL: http://codereview.chromium.org/3604010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/escape.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/base/escape.h b/net/base/escape.h index 315c647..39447a5 100644 --- a/net/base/escape.h +++ b/net/base/escape.h @@ -121,18 +121,12 @@ string16 UnescapeForHTML(const string16& text); // This is basically the same as encodeURIComponent in javascript. // For the string16 version, we do a conversion to charset before encoding the // string. If the charset doesn't exist, we return false. -// -// TODO(brettw) bug 1201094: This function should be removed. See the bug for -// why and what callers should do instead. 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 // assumes the codepage is UTF8. This is provided as a convenience. -// -// TODO(brettw) bug 1201094: This function should be removed. See the bug for -// why and what callers should do instead. std::wstring EscapeQueryParamValueUTF8(const std::wstring& text, bool use_plus); #endif // NET_BASE_ESCAPE_H_ |