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

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

Issue 2581083003: Initial OpenType Font Variations Support (Closed)
Patch Set: Fix makeUnique syntax Created 4 years 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/FontCacheKey.h
diff --git a/third_party/WebKit/Source/platform/fonts/FontCacheKey.h b/third_party/WebKit/Source/platform/fonts/FontCacheKey.h
index 89c123230103afe92808bbc58d81a44bc5c631ca..ae1d8d2ad08e103e50d5d122620b6942044850c7 100644
--- a/third_party/WebKit/Source/platform/fonts/FontCacheKey.h
+++ b/third_party/WebKit/Source/platform/fonts/FontCacheKey.h
@@ -32,6 +32,7 @@
#define FontCacheKey_h
#include "FontFaceCreationParams.h"
+#include "platform/fonts/opentype/FontSettings.h"
#include "wtf/Allocator.h"
#include "wtf/HashMap.h"
#include "wtf/HashTableDeletedValueType.h"
@@ -51,21 +52,27 @@ struct FontCacheKey {
FontCacheKey() : m_creationParams(), m_fontSize(0), m_options(0) {}
FontCacheKey(FontFaceCreationParams creationParams,
float fontSize,
- unsigned options)
+ unsigned options,
+ PassRefPtr<FontVariationSettings> variationSettings)
: m_creationParams(creationParams),
m_fontSize(fontSize * s_fontSizePrecisionMultiplier),
- m_options(options) {}
+ m_options(options),
+ m_variationSettings(variationSettings) {}
+
FontCacheKey(WTF::HashTableDeletedValueType)
: m_fontSize(hashTableDeletedSize()) {}
unsigned hash() const {
- unsigned hashCodes[3] = {m_creationParams.hash(), m_fontSize, m_options};
+ unsigned hashCodes[4] = {
+ m_creationParams.hash(), m_fontSize, m_options,
+ m_variationSettings ? m_variationSettings->hash() : 0};
return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
}
bool operator==(const FontCacheKey& other) const {
return m_creationParams == other.m_creationParams &&
- m_fontSize == other.m_fontSize && m_options == other.m_options;
+ m_fontSize == other.m_fontSize && m_options == other.m_options &&
+ m_variationSettings == other.m_variationSettings;
}
bool isHashTableDeletedValue() const {
@@ -84,6 +91,7 @@ struct FontCacheKey {
FontFaceCreationParams m_creationParams;
unsigned m_fontSize;
unsigned m_options;
+ RefPtr<FontVariationSettings> m_variationSettings;
};
struct FontCacheKeyHash {
« no previous file with comments | « third_party/WebKit/Source/platform/BUILD.gn ('k') | third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698