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

Unified Diff: Source/wtf/HashMap.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 | « Source/wtf/HashFunctions.h ('k') | Source/wtf/HashTable.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/HashMap.h
diff --git a/Source/wtf/HashMap.h b/Source/wtf/HashMap.h
index 43484084d9706cf72e4df5850f2a05b47a0395c1..81ee8a0207b701d62b459d828954ddf392c0539f 100644
--- a/Source/wtf/HashMap.h
+++ b/Source/wtf/HashMap.h
@@ -425,7 +425,7 @@ namespace WTF {
}
template<typename T, typename U, typename V, typename W, typename X, typename Y>
- inline bool HashMap<T, U, V, W, X, Y>::isValidKey(KeyPeekInType key)
+ bool HashMap<T, U, V, W, X, Y>::isValidKey(KeyPeekInType key)
{
if (KeyTraits::isDeletedValue(key))
return false;
@@ -467,7 +467,7 @@ namespace WTF {
}
template<typename T, typename U, typename V, typename W, typename X, typename Y, typename Z>
- inline void copyKeysToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector)
+ void copyKeysToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector)
{
typedef typename HashMap<T, U, V, W, X, Y>::const_iterator::Keys iterator;
@@ -480,7 +480,7 @@ namespace WTF {
}
template<typename T, typename U, typename V, typename W, typename X, typename Y, typename Z>
- inline void copyValuesToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector)
+ void copyValuesToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector)
{
typedef typename HashMap<T, U, V, W, X, Y>::const_iterator::Values iterator;
« no previous file with comments | « Source/wtf/HashFunctions.h ('k') | Source/wtf/HashTable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698