| Index: third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h b/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h
|
| index 8d0d5eb97134540cb50a5fafbeb36c387ece3116..6931cd2c082d7af9bb99c7105cb936d9c74712f3 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h
|
| @@ -53,7 +53,8 @@ class ShapeCache {
|
| WTF_MAKE_NONCOPYABLE(ShapeCache);
|
|
|
| private:
|
| - // Used to optimize small strings as hash table keys. Avoids malloc'ing an out-of-line StringImpl.
|
| + // Used to optimize small strings as hash table keys. Avoids malloc'ing an
|
| + // out-of-line StringImpl.
|
| class SmallStringKey {
|
| DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
|
|
|
| @@ -124,8 +125,9 @@ class ShapeCache {
|
| static bool equal(const SmallStringKey& a, const SmallStringKey& b) {
|
| return a == b;
|
| }
|
| - static const bool safeToCompareToEmptyOrDeleted =
|
| - true; // Empty and deleted values have lengths that are not equal to any valid length.
|
| + // Empty and deleted values have lengths that are not equal to any valid
|
| + // length.
|
| + static const bool safeToCompareToEmptyOrDeleted = true;
|
| };
|
|
|
| struct SmallStringKeyHashTraits : WTF::SimpleClassHashTraits<SmallStringKey> {
|
|
|