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

Unified Diff: Source/platform/fonts/FontSelector.h

Issue 48113009: Move Font related classes to Source/platform/fonts (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add two more Font related independent files Created 7 years, 2 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/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() { }

Powered by Google App Engine
This is Rietveld 408576698