Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Unified Diff: Source/wtf/HashCountedSet.h

Issue 373423003: Save 100-300 KB footprint by not force inlining HashTable functions Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Non-inlined HashTable: Rebased to newer origin/master Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/wtf/HashFunctions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/HashCountedSet.h
diff --git a/Source/wtf/HashCountedSet.h b/Source/wtf/HashCountedSet.h
index 79b3fefadc90a2d25c96961989b65a7dd3d5964e..19fd314ce66c673fc8826cb3f62b0a9425085595 100644
--- a/Source/wtf/HashCountedSet.h
+++ b/Source/wtf/HashCountedSet.h
@@ -87,7 +87,7 @@ namespace WTF {
};
template<typename T, typename U, typename V, typename W>
- inline typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value)
+ typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value)
{
AddResult result = m_impl.add(value, 0);
++result.storedValue->value;
@@ -95,7 +95,7 @@ namespace WTF {
}
template<typename T, typename U, typename V, typename W>
- inline bool HashCountedSet<T, U, V, W>::remove(iterator it)
+ bool HashCountedSet<T, U, V, W>::remove(iterator it)
{
if (it == end())
return false;
@@ -113,7 +113,7 @@ namespace WTF {
}
template<typename T, typename U, typename V, typename W>
- inline void HashCountedSet<T, U, V, W>::removeAll(iterator it)
+ void HashCountedSet<T, U, V, W>::removeAll(iterator it)
{
if (it == end())
return;
@@ -122,7 +122,7 @@ namespace WTF {
}
template<typename T, typename U, typename V, typename W, typename VectorType>
- inline void copyToVector(const HashCountedSet<T, U, V, W>& collection, VectorType& vector)
+ void copyToVector(const HashCountedSet<T, U, V, W>& collection, VectorType& vector)
{
typedef typename HashCountedSet<T, U, V, W>::const_iterator iterator;
@@ -135,7 +135,7 @@ namespace WTF {
}
template<typename Value, typename HashFunctions, typename Traits, typename Allocator, size_t inlineCapacity, typename VectorAllocator>
- inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits, Allocator>& collection, Vector<Value, inlineCapacity, VectorAllocator>& vector)
+ void copyToVector(const HashCountedSet<Value, HashFunctions, Traits, Allocator>& collection, Vector<Value, inlineCapacity, VectorAllocator>& vector)
{
typedef typename HashCountedSet<Value, HashFunctions, Traits, Allocator>::const_iterator iterator;
« no previous file with comments | « no previous file | Source/wtf/HashFunctions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698