diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 13:13:34 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 13:13:34 +0000 |
commit | 7e3dcd91f5d1e75325183467e59886b892f457e1 (patch) | |
tree | 3b050fcf86d5030613b89aefc6b2079df127ae85 /net | |
parent | 75da90291fb214f0ac0de9fef9c0a9acd0a83594 (diff) | |
download | chromium_src-7e3dcd91f5d1e75325183467e59886b892f457e1.zip chromium_src-7e3dcd91f5d1e75325183467e59886b892f457e1.tar.gz chromium_src-7e3dcd91f5d1e75325183467e59886b892f457e1.tar.bz2 |
Remove compatibility #defines in string_util.h
Review URL: http://codereview.chromium.org/17014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7499 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/cookie_monster.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/base/cookie_monster.cc b/net/base/cookie_monster.cc index 5b5f572..dbae99a 100644 --- a/net/base/cookie_monster.cc +++ b/net/base/cookie_monster.cc @@ -173,7 +173,7 @@ Time CookieMonster::ParseCookieTime(const std::string& time_string) { if (!found_month) { for (int i = 0; i < kMonthsLen; ++i) { // Match prefix, so we could match January, etc - if (StrNCaseCmp(token.c_str(), kMonths[i], 3) == 0) { + if (base::strncasecmp(token.c_str(), kMonths[i], 3) == 0) { exploded.month = i + 1; found_month = true; break; |