Index: src/gpu/GrTextStrike_impl.h |
diff --git a/src/gpu/GrTextStrike_impl.h b/src/gpu/GrTextStrike_impl.h |
index 42971855ffd5f6cd1d7ab404b6bbebc59633081b..0691eaa6432b9c4307489430666c6fbe01d3ec74 100644 |
--- a/src/gpu/GrTextStrike_impl.h |
+++ b/src/gpu/GrTextStrike_impl.h |
@@ -19,10 +19,10 @@ public: |
intptr_t getHash() const { return fFontScalerKey->getHash(); } |
- static bool LT(const GrTextStrike& strike, const Key& key) { |
+ static bool LessThan(const GrTextStrike& strike, const Key& key) { |
return *strike.getFontScalerKey() < *key.fFontScalerKey; |
} |
- static bool EQ(const GrTextStrike& strike, const Key& key) { |
+ static bool Equals(const GrTextStrike& strike, const Key& key) { |
return *strike.getFontScalerKey() == *key.fFontScalerKey; |
} |
@@ -88,10 +88,10 @@ public: |
uint32_t getHash() const { return fPackedID; } |
- static bool LT(const GrGlyph& glyph, const Key& key) { |
+ static bool LessThan(const GrGlyph& glyph, const Key& key) { |
return glyph.fPackedID < key.fPackedID; |
} |
- static bool EQ(const GrGlyph& glyph, const Key& key) { |
+ static bool Equals(const GrGlyph& glyph, const Key& key) { |
return glyph.fPackedID == key.fPackedID; |
} |