diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-04 02:55:34 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-04 02:55:34 +0000 |
commit | 9d6c4fd4d0587102015b283c698cab8a9e8aa288 (patch) | |
tree | 0e0a6669706bff7c37b6f254cd968705ba159916 /base | |
parent | 4b2fc165182614072ee2fa1c2130c7a5f484a125 (diff) | |
download | chromium_src-9d6c4fd4d0587102015b283c698cab8a9e8aa288.zip chromium_src-9d6c4fd4d0587102015b283c698cab8a9e8aa288.tar.gz chromium_src-9d6c4fd4d0587102015b283c698cab8a9e8aa288.tar.bz2 |
Sigh, revert "Reland my ClientSocketPool refactor."
This reverts commit d3d93c94d040db33599b798723ac1fef560b653a.
It broke document-location-click-timeout.html again =/
Review URL: http://codereview.chromium.org/119143
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17591 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/stl_util-inl.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/base/stl_util-inl.h b/base/stl_util-inl.h index 70fa69e..54b7b29 100644 --- a/base/stl_util-inl.h +++ b/base/stl_util-inl.h @@ -447,11 +447,4 @@ std::vector<T> SetToVector(const std::set<T>& values) { return result; } -// Test to see if a set, map, hash_set or hash_map contains a particular key. -// Returns true if the key is in the collection. -template <typename Collection, typename Key> -bool ContainsKey(const Collection& collection, const Key& key) { - return collection.find(key) != collection.end(); -} - #endif // BASE_STL_UTIL_INL_H_ |