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

Unified Diff: Source/core/css/CSSValuePool.h

Issue 1082293003: Componentization: make core/animation,clipboard,css,dom,editing,frame,html visible for blink_web. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
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();
}

Powered by Google App Engine
This is Rietveld 408576698