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

Unified Diff: third_party/WebKit/Source/platform/fonts/SegmentedFontData.h

Issue 1479003002: Remove Simple Text Path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 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: third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
diff --git a/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h b/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
index 47c352942e94935a368778d19d8bfb35fb66577b..122e224df7508c2833d2d8035a3d1e035e092d58 100644
--- a/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
+++ b/third_party/WebKit/Source/platform/fonts/SegmentedFontData.h
@@ -29,7 +29,8 @@
#include "platform/PlatformExport.h"
#include "platform/fonts/FontData.h"
#include "platform/fonts/FontDataForRangeSet.h"
-#include "platform/fonts/SimpleFontData.h"
+
+class SimpleFontData;
namespace blink {
@@ -39,9 +40,7 @@ class PLATFORM_EXPORT SegmentedFontData : public FontData {
return adoptRef(new SegmentedFontData);
}
- ~SegmentedFontData() override;
-
- void appendFace(PassRefPtr<FontDataForRangeSet> fontDataForRangeSet) {
+ void appendFace(const PassRefPtr<FontDataForRangeSet> fontDataForRangeSet) {
m_faces.append(fontDataForRangeSet);
}
unsigned numFaces() const { return m_faces.size(); }

Powered by Google App Engine
This is Rietveld 408576698