Chromium Code Reviews| Index: Source/core/css/CSSValuePool.h |
| diff --git a/Source/core/css/CSSValuePool.h b/Source/core/css/CSSValuePool.h |
| index b3e029c8f6e0db9497204fd5552c6ad107968177..c6c4317a62cfdf10a52790ef4d1e6e84dd75bec4 100644 |
| --- a/Source/core/css/CSSValuePool.h |
| +++ b/Source/core/css/CSSValuePool.h |
| @@ -28,6 +28,7 @@ |
| #include "core/CSSPropertyNames.h" |
| #include "core/CSSValueKeywords.h" |
| +#include "core/CoreExport.h" |
| #include "core/css/CSSInheritedValue.h" |
| #include "core/css/CSSInitialValue.h" |
| #include "core/css/CSSPrimitiveValue.h" |
| @@ -87,10 +88,10 @@ private: |
| typedef WillBeHeapHashMap<String, RefPtrWillBeMember<CSSPrimitiveValue>> FontFamilyValueCache; |
| FontFamilyValueCache m_fontFamilyValueCache; |
| - friend CSSValuePool& cssValuePool(); |
| + friend CORE_EXPORT CSSValuePool& cssValuePool(); |
|
haraken
2015/04/15 09:35:19
I'm just curious but do we need EXPORT on a friend
tasak
2015/04/16 01:28:42
If removing CORE_EXPORT from one of cssValuePool()
|
| }; |
| -CSSValuePool& cssValuePool(); |
| +CORE_EXPORT CSSValuePool& cssValuePool(); |
| } |