Index: Source/platform/fonts/FontSelector.h |
diff --git a/Source/core/platform/graphics/FontSelector.h b/Source/platform/fonts/FontSelector.h |
similarity index 95% |
rename from Source/core/platform/graphics/FontSelector.h |
rename to Source/platform/fonts/FontSelector.h |
index 1225ffc783c33e2fe1ca3098e4deb6309229db70..69e4e7d2cb1153592ec8d270ca217cd4d5fd0525 100644 |
--- a/Source/core/platform/graphics/FontSelector.h |
+++ b/Source/platform/fonts/FontSelector.h |
@@ -36,7 +36,7 @@ class FontData; |
class FontDescription; |
class FontSelectorClient; |
-class FontSelector : public RefCounted<FontSelector> { |
+class PLATFORM_EXPORT FontSelector : public RefCounted<FontSelector> { |
abarth-chromium
2013/10/29 05:26:35
Again, this class is entirely inline. If you need
rwlbuis
2013/10/29 18:38:00
I'll try without the export first.
|
public: |
virtual ~FontSelector() { } |
virtual PassRefPtr<FontData> getFontData(const FontDescription&, const AtomicString& familyName) = 0; |
@@ -50,7 +50,7 @@ public: |
virtual unsigned version() const = 0; |
}; |
-class FontSelectorClient { |
+class PLATFORM_EXPORT FontSelectorClient { |
abarth-chromium
2013/10/29 05:26:35
ditto
rwlbuis
2013/10/29 18:38:00
ditto :)
|
public: |
virtual ~FontSelectorClient() { } |